1 write to EventName
Aspire.Dashboard (1)
Otlp\Model\OtlpLogEntry.cs (1)
59
EventName
= eventName;
11 references to EventName
Aspire.Dashboard (6)
Components\Controls\StructuredLogDetails.razor.cs (2)
84
if (!string.IsNullOrEmpty(_viewModel.LogEntry.
EventName
))
86
_contextAttributes.Add(new TelemetryPropertyViewModel { Name = "EventName", Key = KnownStructuredLogFields.EventNameField, Value = _viewModel.LogEntry.
EventName
});
Model\TelemetryExportService.cs (1)
268
EventName = log.
EventName
Otlp\Model\OtlpHelpers.cs (2)
550
if (!string.IsNullOrEmpty(logEntry.
EventName
))
552
return logEntry.
EventName
;
Otlp\Model\OtlpLogEntry.cs (1)
71
KnownStructuredLogFields.EventNameField => log.
EventName
,
Aspire.Dashboard.Tests (5)
Model\TraceDetailPageViewModelTests.cs (1)
119
EventName = logEntry.
EventName
,
TelemetryRepositoryTests\LogTests.cs (4)
1637
Assert.Equal("TestEvent", resource.
EventName
);
1678
Assert.Equal("LegacyEvent", resource.
EventName
);
1722
Assert.Equal("FieldEvent", resource.
EventName
);
1763
Assert.Null(resource.
EventName
);