| File: Latency\CaptureResponseTimeMiddleware.cs | Web Access |
| Project: src\src\Libraries\Microsoft.AspNetCore.Diagnostics.Middleware\Microsoft.AspNetCore.Diagnostics.Middleware.csproj (Microsoft.AspNetCore.Diagnostics.Middleware) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Diagnostics.Latency; using Microsoft.Shared.Diagnostics; namespace Microsoft.AspNetCore.Diagnostics.Latency; /// <summary> /// A middleware that captures response times. /// </summary> internal sealed class CaptureResponseTimeMiddleware { private readonly CheckpointToken _elapsedTillHeaders; private readonly CheckpointToken _elapsedTillFinished; private readonly RequestDelegate _next; public CaptureResponseTimeMiddleware(RequestDelegate next, ILatencyContextTokenIssuer tokenIssuer) { _elapsedTillHeaders = tokenIssuer.GetCheckpointToken(RequestCheckpointConstants.ElapsedTillHeaders); _elapsedTillFinished = tokenIssuer.GetCheckpointToken(RequestCheckpointConstants.ElapsedTillFinished); _next = Throw.IfNull(next); } /// <summary> /// Request handling method. /// </summary> /// <param name="context">The <see cref="HttpContext"/> for the current request.</param> /// <returns>A <see cref="Task"/> that represents the execution of this middleware.</returns> public Task InvokeAsync(HttpContext context) { var latencyContext = context.RequestServices.GetRequiredService<ILatencyContext>(); // Capture the time just before response headers will be sent to the client. context.Response.OnStarting(l => { var latencyContext = l as ILatencyContext; latencyContext!.AddCheckpoint(_elapsedTillHeaders); return Task.CompletedTask; }, latencyContext); // Capture the time after the response has finished being sent to the client. context.Response.OnCompleted(l => { var latencyContext = l as ILatencyContext; latencyContext!.AddCheckpoint(_elapsedTillFinished); return Task.CompletedTask; }, latencyContext); // Call the next delegate/middleware in the pipeline return _next(context); } }