We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current title line pattern is roughly:
[@timestamp] LOG.LEVEL (log.logger/service.name on host.hostname): message
I think the parens section is weak. It comes at least partly from my bunyan experience For comparison:
typical bunyan: [@timestamp] LEVEL (name/pid on host): message typical pino: [@timestamp] LEVEL (pid on host): message typical winston: [@timestamp] LEVEL: message
Notes:
name
log.logger
pid
process.pid
service.name
The text was updated successfully, but these errors were encountered:
Bunyan will include "src" fields in the title line, I think.
"log.origin"."file.name"
Sorry, something went wrong.
No branches or pull requests
The current title line pattern is roughly:
I think the parens section is weak. It comes at least partly from my bunyan experience
For comparison:
Notes:
name
field, which is the equivalent oflog.logger
in ECS.pid
(ECS equivalent isprocess.pid
)service.name
will typically only be there with automatic injection from APM agents.The text was updated successfully, but these errors were encountered: