using System; using System.Diagnostics; using System.Threading.Tasks; using Serilog.Events; using Tapeti.Config; using Tapeti.Serilog.Default; namespace Tapeti.Serilog.Middleware { /// /// Implements the message handler logging middleware which provides an IDiagnosticContext for /// the message handler and logs the result. /// public class MessageHandlerLoggingMessageMiddleware : IControllerMessageMiddleware { private readonly double elapsedWarningTreshold; private readonly LogEventLevel defaultLevel; /// /// Creates a new instance of the message handler logging middleware which provides an IDiagnosticContext /// for the message handler and logs the result. /// /// The time (in milliseconds) a message handler is allowed to run without a warning being logged /// The default log level when a message handler completes within the elapsedWarningTreshold public MessageHandlerLoggingMessageMiddleware(double elapsedWarningTreshold = 500, LogEventLevel defaultLevel = LogEventLevel.Debug) { this.elapsedWarningTreshold = elapsedWarningTreshold; this.defaultLevel = defaultLevel; } /// public async ValueTask Handle(IMessageContext context, Func next) { var logger = context.Config.DependencyResolver.Resolve(); var diagnosticContext = new DiagnosticContext(logger); context.Store(new DiagnosticContextPayload(diagnosticContext)); var stopwatch = new Stopwatch(); stopwatch.Start(); await next(); stopwatch.Stop(); var controllerName = "Unknown"; var methodName = "Unknown"; if (context.TryGet(out var controllerMessageContextPayload)) { controllerName = controllerMessageContextPayload.Binding.Controller.Name; methodName = controllerMessageContextPayload.Binding.Method.Name; } var level = stopwatch.ElapsedMilliseconds > elapsedWarningTreshold ? LogEventLevel.Warning : defaultLevel; var enrichedLogger = diagnosticContext.GetEnrichedLogger(); enrichedLogger.Write(level, "Tapeti: {controller}.{method} completed in {elapsedMilliseconds} ms", controllerName, methodName, stopwatch.ElapsedMilliseconds); } } }