8 references to EventNameField
Aspire.Dashboard (6)
Api\TelemetryApiService.cs (1)
470
"event" => KnownStructuredLogFields.
EventNameField
,
Components\Controls\StructuredLogDetails.razor.cs (1)
86
_contextAttributes.Add(new TelemetryPropertyViewModel { Name = "EventName", Key = KnownStructuredLogFields.
EventNameField
, Value = _viewModel.LogEntry.EventName });
Model\Otlp\KnownStructuredLogFields.cs (1)
25
EventNameField
,
Model\Otlp\TelemetryFilter.cs (1)
39
KnownStructuredLogFields.
EventNameField
=> "EventName",
Otlp\Model\OtlpLogEntry.cs (1)
71
KnownStructuredLogFields.
EventNameField
=> log.EventName,
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (1)
622
KnownStructuredLogFields.
EventNameField
=> coalesceMissing ? "COALESCE(l.event_name, '')" : "l.event_name",
Aspire.Dashboard.Tests (2)
TelemetryRepositoryTests\LogTests.cs (2)
1154
Filters = [new FieldTelemetryFilter { Condition = FilterCondition.Contains, Field = KnownStructuredLogFields.
EventNameField
, Value = "does_not_contain" }]
1162
Filters = [new FieldTelemetryFilter { Condition = FilterCondition.Contains, Field = KnownStructuredLogFields.
EventNameField
, Value = "MyEvent" }]