Skip to content

Instantly share code, notes, and snippets.

@neduma
Forked from asiegman/nginx.conf
Created February 16, 2017 23:53
Show Gist options
  • Save neduma/3a5a77059df52b14f1801a18a5040fa8 to your computer and use it in GitHub Desktop.
Save neduma/3a5a77059df52b14f1801a18a5040fa8 to your computer and use it in GitHub Desktop.
nginx logstash output
# Output json-esque output for logstash to parse easily.
http {
# ...
log_format logstash_json '{"@timestamp": "$time_iso8601", '
'"remote_addr": "$remote_addr", '
'"remote_user": "$remote_user", '
'"body_bytes_sent": "$body_bytes_sent", '
'"request_time": "$request_time", '
'"status": "$status", '
'"request": "$request", '
'"request_method": "$request_method", '
'"http_referer": "$http_referer", '
'"http_x_forwarded_for": "$http_x_forwarded_for", '
'"http_x_real_ip": "$http_x_real_ip", '
'"upstream_response_time": "$upstream_response_time"'
'}';
access_log /var/log/nginx/access.log logstash_json;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment