1 write to EventId
Microsoft.Extensions.Logging.Abstractions (1)
LogEntry.cs (1)
26EventId = eventId;
9 references to EventId
Microsoft.AspNetCore.Diagnostics.Middleware (2)
Buffering\IncomingRequestLogBuffer.cs (2)
66if (_ruleSelector.Select(_filterRules, logEntry.LogLevel, logEntry.EventId, attributes) is null) 75logEntry.EventId,
Microsoft.Extensions.Logging.Console (4)
JsonConsoleFormatter.cs (2)
51WriteInternal(scopeProvider, textWriter, message, logEntry.LogLevel, logEntry.Category, logEntry.EventId.Id, logEntry.Exception?.ToString(), 71writer.WriteNumber(nameof(LogEntry<object>.EventId), eventId);
SimpleConsoleFormatter.cs (1)
64WriteInternal(scopeProvider, textWriter, message, logEntry.LogLevel, logEntry.EventId.Id, logEntry.Exception?.ToString(), logEntry.Category, GetCurrentDateTime());
SystemdConsoleFormatter.cs (1)
54WriteInternal(scopeProvider, textWriter, message, logEntry.LogLevel, logEntry.Category, logEntry.EventId.Id, logEntry.Exception?.ToString(), GetCurrentDateTime());
Microsoft.Extensions.Telemetry (3)
Buffering\GlobalBuffer.cs (2)
86if (_ruleSelector.Select(_lastKnownGoodFilterRules, logEntry.LogLevel, logEntry.EventId, attributes) is null) 95logEntry.EventId,
Sampling\RandomProbabilisticSampler.cs (1)
88RandomProbabilisticSamplerFilterRule? rule = _ruleSelector.Select(LastKnownGoodSamplerRules, logEntry.Category, logEntry.LogLevel, logEntry.EventId);