服务时间在goaccess工具中显示0.0us

时间:2015-04-23 05:01:47

标签: nginx analyzer goaccess

我们在linux机器上安装了GoAccess v0.9。我们在nginx中有自定义的日志格式。

log_format  timed_combined  '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for" <msec=$msec|connection=$connection|connection_requests=$connection_requests|millis=$request_time>';

但是在使用goaccess工具查看日志时,Time服务参数显示所有面板的0.00us。 goaccess.conf中使用的日志格式是

log-format %h %^[%d:%^] "%r" %s %b "%R" "%u" %^ %D

如何在Goaccess报告中显示正确的时间

1 个答案:

答案 0 :(得分:4)

假设您的log-format正确,Nginx使用毫秒,因此您应该使用%D而不是指定%T(微秒)。

log-format %h %^[%d:%^] "%r" %s %b "%R" "%u" %^ %T

有关custom log的更多信息。