Skip to content

Instantly share code, notes, and snippets.

@swarajgiri
Forked from vmadman/apache-json-log-format
Last active August 29, 2015 14:15
Show Gist options
  • Save swarajgiri/dc8dbfc781fef2adb39c to your computer and use it in GitHub Desktop.
Save swarajgiri/dc8dbfc781fef2adb39c to your computer and use it in GitHub Desktop.
LogFormat "{ \
\"@vips\":[\"%v\"], \
\"@source\":\"%v%U%q\", \
\"@source_host\": \"%v\", \
\"@source_path\": \"%f\", \
\"@tags\":[\"Apache\",\"Access\"], \
\"@message\": \"%h %l %u %t \\\"%r\\\" %>s %b\", \
\"@fields\": { \
\"timestamp\": \"%{%Y-%m-%dT%H:%M:%S%z}t\", \
\"clientip\": \"%a\", \
\"duration\": %D, \
\"status\": %>s, \
\"request\": \"%U%q\", \
\"urlpath\": \"%U\", \
\"urlquery\": \"%q\", \
\"method\": \"%m\", \
\"referer\": \"%{Referer}i\", \
\"user-agent\": \"%{User-agent}i\", \
\"bytes\": %B \
} \
}" ls_apache_json
# Pipe only warnings/errors to json log file
CustomLog "|/bin/grep -E --invert-match --line-buffered 'status.?[[:punct:]].?[23]' |cat >> /var/log/apache2/error.json" ls_apache_json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment