Re: Add jsonlog log_destination for JSON server logs
Alvaro Herrera <alvherre@alvh.no-ip.org>
From: Alvaro Herrera <alvherre@alvh.no-ip.org>
To: Michael Paquier <michael@paquier.xyz>
Cc: Andrew Dunstan <andrew@dunslane.net>, Andres Freund <andres@anarazel.de>, Sehrope Sarkuni <sehrope@jackdb.com>, Pg Hackers <pgsql-hackers@postgresql.org>, david@fetter.org
Date: 2022-02-10T22:45:17Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Introduce log_destination=jsonlog
- dc686681e079 15.0 landed
-
Refactor set of routines specific to elog.c
- ac7c80758a7a 15.0 landed
-
Fix compilation warning in syslogger.c
- 05c4248ad1bf 15.0 landed
-
Refactor per-destination file rotation in logging collector
- 5c6e33f07153 15.0 landed
-
Refactor output file handling when forking syslogger under EXEC_BACKEND
- 5b0b699f748e 15.0 landed
-
Add regression tests for csvlog with the logging collector
- 72b76f76161c 15.0 landed
-
Refactor the syslogger pipe protocol to use a bitmask for its options
- 2d77d835403a 15.0 landed
So, thinking about this, there is one important piece that is missing here, which is the ability to change the default format for what we write to stderr. Right now, if you have stderr output, it is always in the "plain multiline" format, with no option to change it. If you want a JSON log, you have to read a file. But ISTM it would be pretty useful if you could say "log_default_format=json" and get the log that we get in stderr in the JSON format instead. From what I hear in the container world, what they would *prefer* (but they don't often get) is to receive the JSON-format logs directly in stderr from the daemons they run; they capture stderr and they have the logs just in the format they need, without having to open the log files, parsing the lines to rewrite in a different format as is done currently. I think this would be a relatively easy patch to do. Opinions? -- Álvaro Herrera Valdivia, Chile — https://www.EnterpriseDB.com/