-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
UseSerilogRequestLogging() #94
Conversation
Argh, annoyingly, I forgot to mark this as "Draft" - it needs some upstream changes before it will build. |
Looks good to me 👍
Probably, but I'm inclined to wait for someone to ask for it
Again, probably, but the current implementation works for me as-is
Yeah I'd be inclined to remove the space for consistency with other systems, but I don't think it really matters much. |
Thinking again about the localisation and typographic questions, being able to solve both of those by providing template customization would kill two birds with one stone - I might take a look at that option :-) |
Alrighty, made Going to push the button and circulate some details so we have a chance of gathering feedback before the rush of ASP.NET Core/.NET Core 3.0 is upon us! Hat tip to @martinjt whose Honeycomb middleware example was the inspiration to get going on this 🎩 |
Is there an example showing how to use |
@Giorgi no, not currently. Though this was a promising direction, I think the ubiquity of tracing and Check out https://nblumhardt.com/2024/04/serilog-net8-0-minimal/#recording-web-requests for a quick run through how this looks with Serilog. HTH! |
This long-talked-about feature adds middleware for request logging, based on the popular sample in this blog post.
In comparison with the default request logging performed by the framework, this implementation condenses as much information as possible into a single event, resulting in easier correlation and lower log volumes.
An example completion event might look like:
(I'm using the
{Properties:j}
output formatting option to include properties not present in the log message itself. This makes the events a bit noisier, but it's easier to see what's going on.)Additional properties can be added to the completion event using
IDiagnosticContext
; e.g. in the InlineInitializationSample project'sHomeController.Index()
:The
_diagnosticContext.Add()
call will attachIndexCallCount
to completion events, e.g.:By doing this, it's no longer necessary to speculatively include a lot of information in the request completion event: users who want more details (e.g. form fields from the request, headers, etc.), can write middleware that depends on
IDiagnosticContext
and simply add these themselves.Open to all opinions, including on:
123.456ms
vs123.456 ms
; in a cluttered log event I find the former a bit harder to quickly scan so I've gone with the latter.The PR also replicates some changes, and depends on others, in serilog/serilog-extensions-hosting#9. In particular,
UseSerilog()
will now register theIDiagnosticContext
andDiagnosticContext
types, as well asILogger
if available, and the middleware consumesDiagnosticContext
. CC @andrewlock.