I'm trying to generate a JSON log from nginx.
I'm aware of solutions like this one but some of the fields I want to log include user generated input (like HTTP headers) which need to be escaped properly.
I'm aware of the nginx changelog entries from Oct 2011 and May 2008 that say:
*) Change: now the 0x7F-0x1F characters are escaped as \xXX in an
access_log.
*) Change: now the 0x00-0x1F, '"' and '\' characters are escaped as \xXX
in an access_log.
but this still doesn't help since \xXX
is invalid in a JSON string.
I've also looked at the HttpSetMiscModule module which has a set_quote_json_str
directive, but this just seems to add \x22
around the strings which doesn't help.
Any idea for other solutions to log in JSON format from nginx?