serilog-aspnetcore
serilog-aspnetcore copied to clipboard
`RequestLoggingMiddleware` assumes HTTP status 500 for all exceptions which is not correct
Description
RequestLoggingMiddleware logs all exceptions with HTTP status code 500 even if the actual status code sent to the client is a different one.
Reproduction
- Use
app.UseSerilogRequestLogging(); - Have
throw new BadHttpRequestException("Test");in an API controller action method. - Call the method.
- See the log output "HTTP GET /api/test responded 500 in 55.9105 ms"
- See that the actual status code received by the client is 400.
Expected behavior
RequestLoggingMiddleware should use the actual HTTP status code in the log message.
Relevant package, tooling and runtime versions Serilog.AspNetCore 7.0.0 on .NET 7
Additional context I think in this special case the HTTP status code is set by the DeveloperExceptionPageMiddlewareImpl. But there might be other cases/middlewares that affect the status code.
ASP.NET Core 8 will improve the default exception handling middlewares for cancellation, see https://github.com/dotnet/aspnetcore/pull/46330
As you can see in that PR, cancelled requests will then use the status code Status499ClientClosedRequest.
ASP.NET Core 9 will allow user code to determine the returned status code, see https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview7/aspnetcore.md#exceptionhandlermiddleware-option-to-choose-the-status-code-based-on-the-exception
Some exploration around how to support this would be welcome; seems like a great improvement to make, if it can be done 👍
I don't think this can be achieved. As every middleware can change the result code (as DeveloperExceptionPageMiddlewareImpl does) we cannot know at this point which status code will be returned finally.
You can also use a middleware that catches an Exception which is not relevant for the caller and still returns a 200/OK message. The 500 status code is just a good guess in this case.
I think in this special case the HTTP status code is set by the DeveloperExceptionPageMiddlewareImpl. But there might be other cases/middlewares that affect the status code.
ASP.NET Core 8 will improve the default exception handling middlewares for cancellation, see dotnet/aspnetcore#46330 As you can see in that PR, cancelled requests will then use the status code
Status499ClientClosedRequest.
This is why I came here. I (of course) agree that no middleware can predict what other middlwares in the pipeline will do eventually, but with this specific detail from the "Additional context", RequestLoggingMiddleware is in an awkward place now where I seem to be given a choice between:
- a little extra log spam per request from the default logging middleware
- reduced log spam per request from this middleware, but a LOT of log spam for each canceled request
- pick either of those and then write my own custom middleware that addresses its own drawbacks
As a power user, I'm happy to app.UseSerilogRequestLogging(); and then immediately follow it up with some variant of what was done in dotnet/aspnetcore#46330, but it seems like things might go a bit more smoothly if this line https://github.com/serilog/serilog-aspnetcore/blob/68f2f3d41d4ff92e11107618625ec19b9a43e4e4/src/Serilog.AspNetCore/AspNetCore/RequestLoggingMiddleware.cs#L61 were, itself, wrapped in the same kind of try/catch?
Edit to add: or, probably better, a clone of this block https://github.com/serilog/serilog-aspnetcore/blob/68f2f3d41d4ff92e11107618625ec19b9a43e4e4/src/Serilog.AspNetCore/AspNetCore/RequestLoggingMiddleware.cs#L66-L71 that catches the same exceptions that dotnet/aspnetcore#46330 does, then logs them (status code 499), then doesn't rethrow?
I think in this special case the HTTP status code is set by the DeveloperExceptionPageMiddlewareImpl. But there might be other cases/middlewares that affect the status code. ASP.NET Core 8 will improve the default exception handling middlewares for cancellation, see dotnet/aspnetcore#46330 As you can see in that PR, cancelled requests will then use the status code
Status499ClientClosedRequest.This is why I came here. I (of course) agree that no middleware can predict what other middlwares in the pipeline will do eventually, but with this specific detail from the "Additional context",
RequestLoggingMiddlewareis in an awkward place now where I seem to be given a choice between:* a little extra log spam per request from the default logging middleware * reduced log spam per request from this middleware, but a LOT of log spam for each canceled request * pick either of those and then write my own custom middleware that addresses its own drawbacksAs a power user, I'm happy to
app.UseSerilogRequestLogging();and then immediately follow it up with some variant of what was done in dotnet/aspnetcore#46330, but it seems like things might go a bit more smoothly if this linehttps://github.com/serilog/serilog-aspnetcore/blob/68f2f3d41d4ff92e11107618625ec19b9a43e4e4/src/Serilog.AspNetCore/AspNetCore/RequestLoggingMiddleware.cs#L61 were, itself, wrapped in the same kind of try/catch?
Edit to add: or, probably better, a clone of this block
https://github.com/serilog/serilog-aspnetcore/blob/68f2f3d41d4ff92e11107618625ec19b9a43e4e4/src/Serilog.AspNetCore/AspNetCore/RequestLoggingMiddleware.cs#L66-L71 that catches the same exceptions that dotnet/aspnetcore#46330 does, then logs them (status code 499), then doesn't rethrow?
I'm running into the same issue, having a lot of TaskCanceledException log spam. Aditionally you have the annoying '... Cancelled by user.' SqlException for later.
Just chiming in with another workable option; since ASP.NET Core completes the Activity corresponding to each request after all middleware has run, using https://github.com/serilog-tracing/serilog-tracing and Instrument.AspNetCoreRequests() can achieve similar output to this middleware, but should produce a more accurate final status code.
As a work around, if you catch exceptions in a middleware after RequestLoggingMiddleware and set the exception in the DiagnosticContext, then the Serilog middleware will do the right thing and
- log the exception
- use whatever HTTP status code you've already set
This may not work with error pages, I haven't tried it
public class ExceptionHandlingMiddleware( RequestDelegate next, DiagnosticContext diagnosticContext )
{
public async Task Invoke( HttpContext context )
{
try
{
await next( context );
}
catch ( Exception ex )
{
var response = await BuildResponseAndSetStatusCode( context, ex );
diagnosticContext.SetException( ex );
// don't rethrow the exception
}
}
private async Task BuildResponseAndSetStatusCode(HttpContext context, Exception exception)
{
/* handle the error */
}
And during startup:
// this order ensures that `ExceptionHandlingMiddleware` gets the chance to manage the error and set a status code before serilog sees it
app.UseSerilogRequestLogging();
app.UseMiddleware<ExceptionHandlingMiddleware>();
Joining in, because I'm surprised to see that in .net 8 when the clients disconnects, the response code is set to 499, but serilog happily logs a 200 response code in the requestloggingmiddleware.
Seems like this will get more complicated. ASP.NET Core 9 will allow user code to determine the returned status code, see https://github.com/dotnet/core/blob/main/release-notes/9.0/preview/preview7/aspnetcore.md#exceptionhandlermiddleware-option-to-choose-the-status-code-based-on-the-exception
I don't know if there is any way how this could be supported in RequestLoggingMiddleware. But if no automatic solution is possible, then maybe it would be a good idea to offer the same StatusCodeSelector setting?
Mirroring that setting sounds reasonable @cremor 👍 - thanks for the heads-up.
Although I think it should be possible to just inject IOptions<ExceptionHandlerOptions> into RequestLoggingMiddleware.