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)
25EventNameField,
Model\Otlp\TelemetryFilter.cs (1)
39KnownStructuredLogFields.EventNameField => "EventName",
Otlp\Model\OtlpLogEntry.cs (1)
71KnownStructuredLogFields.EventNameField => log.EventName,
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (1)
622KnownStructuredLogFields.EventNameField => coalesceMissing ? "COALESCE(l.event_name, '')" : "l.event_name",
Aspire.Dashboard.Tests (2)
TelemetryRepositoryTests\LogTests.cs (2)
1154Filters = [new FieldTelemetryFilter { Condition = FilterCondition.Contains, Field = KnownStructuredLogFields.EventNameField, Value = "does_not_contain" }] 1162Filters = [new FieldTelemetryFilter { Condition = FilterCondition.Contains, Field = KnownStructuredLogFields.EventNameField, Value = "MyEvent" }]