Created
January 29, 2015 16:29
-
-
Save asiegman/9ca5d3218db8c2f3993b to your computer and use it in GitHub Desktop.
nginx logstash output
This file contains 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
# 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