mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
905 B
26 lines
905 B
using System.Data.Common; |
|
using ErsatzTV.Core; |
|
using Microsoft.EntityFrameworkCore.Diagnostics; |
|
using Microsoft.Extensions.Logging; |
|
|
|
namespace ErsatzTV.Infrastructure; |
|
|
|
public class SlowQueryInterceptor(ILogger<SlowQueryInterceptor> logger) : DbCommandInterceptor |
|
{ |
|
public override ValueTask<DbDataReader> ReaderExecutedAsync( |
|
DbCommand command, |
|
CommandExecutedEventData eventData, |
|
DbDataReader result, |
|
CancellationToken cancellationToken = default) |
|
{ |
|
if (SystemEnvironment.SlowDbMs > 0 && eventData.Duration.TotalMilliseconds > SystemEnvironment.SlowDbMs) |
|
{ |
|
logger.LogDebug( |
|
"[SLOW QUERY] ({Milliseconds}ms): {Command}", |
|
eventData.Duration.TotalMilliseconds, |
|
command.CommandText); |
|
} |
|
|
|
return base.ReaderExecutedAsync(command, eventData, result, cancellationToken); |
|
} |
|
}
|
|
|