forked from xiongyuxing/tiku-backend.net
13 lines
309 B
C#
13 lines
309 B
C#
using Tiku.Infrastructure.Observability;
|
|
|
|
namespace Tiku.Api.Middleware;
|
|
|
|
public sealed class DatabaseRequestMetricsMiddleware(RequestDelegate next)
|
|
{
|
|
public async Task InvokeAsync(HttpContext context)
|
|
{
|
|
using var metrics = DatabaseRequestMetrics.Begin();
|
|
await next(context);
|
|
}
|
|
}
|