2

大多数 goaccess 示例用于监控访问日志。我想用 goaceess监控错误日志。

我的错误日志格式如下:

2020/02/05 09:23:08 [crit] 9711#9711: *6 SSL_do_handshake() failed (SSL: error:1420918C:SSL routines:tls_early_post_process_client_hello:version too low) while SSL handshaking, client: X.X.X.X, server: 0.0.0.0:443
2020/02/05 09:38:21 [error] 10106#10106: *3 directory index of "/var/www/example/public_html/" is forbidden, client: 162.158.166.216, server: example.com, request: "GET /nginx-reports/ HTTP/1.1", host: "example.com"

现在我正在使用以下日志格式:

log-format %d %t %^, client: %h, server: %^, request: "%r", host: "%v"

但是,goaccess 报告没有生成有用的输出。我想在报告中查看每种类型错误的详细信息。

4

1 回答 1

0

在我的服务器中,这是有效的正则表达式

log-format %d %t %^, client: %h, server: %^, request: "%r", host: "%v", referrer: "%R"
于 2020-03-26T04:23:32.493 回答