12 references to OtlpAttribute
Aspire.Dashboard (10)
Components\Dialogs\FilterDialog.razor.cs (2)
149.Append(Content.Filter is { Field: { } field } && !Content.KnownKeys.Contains(field, StringComparers.OtlpAttribute) ? field : null) 151.Distinct(StringComparers.OtlpAttribute)
Components\Pages\TraceDetail.razor.cs (1)
712return Task.FromResult(new Dictionary<string, int>(StringComparers.OtlpAttribute));
Otlp\Model\OtlpResource.cs (2)
146hashCode.Add(StringComparers.OtlpAttribute.GetHashCode(obj[i].Key)); 147hashCode.Add(StringComparers.OtlpAttribute.GetHashCode(obj[i].Value));
Otlp\Model\OtlpSpan.cs (1)
251var attributeValues = new Dictionary<string, int>(StringComparers.OtlpAttribute);
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (2)
470return new Dictionary<string, int>(StringComparers.OtlpAttribute); 489return values.ToDictionary(record => record.FieldValue!, record => record.ValueCount, StringComparers.OtlpAttribute);
Otlp\Storage\SqliteTelemetryRepository.Traces.Reads.cs (2)
589return new Dictionary<string, int>(StringComparers.OtlpAttribute); 637return values.ToDictionary(record => record.FieldValue!, record => record.ValueCount, StringComparers.OtlpAttribute);
Aspire.Dashboard.Tests (2)
TelemetryRepositoryTests\LogTests.cs (2)
333.GroupBy(value => value!, StringComparers.OtlpAttribute) 334.ToDictionary(group => group.Key, group => group.Count(), StringComparers.OtlpAttribute);