You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.9.3
Example log line:
2024/11/25 19:43:58 127.0.0.1 GET /api/users/auth 174
The number on the end is microseconds
Command to run it:
goaccess filtered.log --log-format='%d %t %h %m %U %D' --date-format='%Y/%m/%d' --time-format='%H:%M:%S' --debug-file=debug.log -a > report.html
Debug.log: nothing
I am guessing that the command and the log line don't match but if that is it I can't figure out how.
The text was updated successfully, but these errors were encountered:
Your date and time formats are correct, but rather than redirecting the goaccess command to a file, you can use the -o/--output option to generate CSV, HTML, and JSON files from your logs.
@chad187 In order to get the average, cumulative and maximum time served in GoAccess, you will need to start logging response times in your web server. In Nginx you can add $request_time to your log format, or %D in Apache.
Version 1.9.3
Example log line:
2024/11/25 19:43:58 127.0.0.1 GET /api/users/auth 174
The number on the end is microseconds
Command to run it:
goaccess filtered.log --log-format='%d %t %h %m %U %D' --date-format='%Y/%m/%d' --time-format='%H:%M:%S' --debug-file=debug.log -a > report.html
Debug.log: nothing
I am guessing that the command and the log line don't match but if that is it I can't figure out how.
The text was updated successfully, but these errors were encountered: