Web/Tech

goaccess 사용방법

bugtype 2019. 2. 27. 08:51

설치법

brew 설치

brew install goaccess

사용법

access.log 파일을 열면 된다.

goaccess access.log

위 사진처럼 parsing에 맞는 것을 선택하면 된다.

html 파일로 내보내기

goaccess access.log -a -o report.html

parsing 코드를 직접 작성해서 html으로 내보내기

goaccess -f access.log --log-format='%^ %v %^[%d:%t %^] "%m %U %H" %R %^ %s %b "%u" "%h"' --date-format=%d/%b/%Y --time-format=%T -o report.html
%v - 

주의

  1. access.log는 parsing code 와 일치해야 한다.

  2. %h, %d %r 는 필수로 포함해야 한다.

관련 링크



2018-09-21 작성했던 글입니다.


'Web > Tech' 카테고리의 다른 글

Docker  (0) 2019.04.06