-
-
Save TiloGit/dc59fd710f4e98fc9da4d0ca27ac6f79 to your computer and use it in GitHub Desktop.
Easy IIS log file format specification for goaccess.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goaccess -f u_ex150629.log --log-format "$(cat u_ex150629.log | ./goiisformat.sh)" --date-format '%Y-%m-%d' --time-format '%H:%M:%S' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
while read line; do | |
if [[ $line == \#Fields:* ]]; then | |
line=${line/\#Fields: /} | |
line=${line/date/%d} | |
line=${line/time/%t} | |
line=${line/s-sitename/%^} | |
line=${line/s-computername/%^} | |
line=${line/s-ip/%^} | |
line=${line/cs-method/%m} | |
line=${line/cs-uri-stem/%U} | |
line=${line/cs-uri-query/%^} | |
line=${line/s-port/%^} | |
line=${line/cs-username/%^} | |
line=${line/c-ip/%h} | |
line=${line/cs-version/%H} | |
line=${line/cs(User-Agent)/%u} | |
line=${line/cs(Cookie)/%^} | |
line=${line/cs(Referer)/%R} | |
line=${line/cs-host/%^} | |
line=${line/sc-status/%s} | |
line=${line/sc-substatus/%^} | |
line=${line/sc-win32-status/%^} | |
line=${line/sc-bytes/%b} | |
line=${line/cs-bytes/%^} | |
line=${line/time-taken/%L} | |
echo $line | |
exit; | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment