2 writes to AttributeKey
Aspire.Dashboard (2)
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (2)
285
AttributeKey
= record.AttributeKey!,
302
AttributeKey
= attribute.Key,
9 references to AttributeKey
Aspire.Dashboard (9)
Otlp\Storage\SqliteTelemetryRepository.Logs.cs (1)
707
return attributes.Select(attribute => KeyValuePair.Create(attribute.
AttributeKey
, attribute.AttributeValue)).ToArray();
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (7)
297
.Select(attribute => KeyValuePair.Create(attribute.
AttributeKey
, attribute.AttributeValue))
314
attributes[dimensionId].Select(attribute => KeyValuePair.Create(attribute.
AttributeKey
, attribute.AttributeValue)).ToArray())))
322
enumerator.Current is {
AttributeKey
: "otel.metric.overflow", AttributeValue: "true" } &&
355
var value = attributes.FirstOrDefault(attribute => attribute.
AttributeKey
== key)?.AttributeValue;
374
foreach (var key in knownAttributeValues.Keys.Union(attributes[dimensionId].Select(attribute => attribute.
AttributeKey
)).Distinct().ToList())
385
var value = attributes[dimensionId].FirstOrDefault(attribute => attribute.
AttributeKey
== key)?.AttributeValue;
463
Attributes = attributes[item.Record.ExemplarId].Select(attribute => KeyValuePair.Create(attribute.
AttributeKey
, attribute.AttributeValue)).ToArray()
Otlp\Storage\SqliteTelemetryRepository.Traces.Reads.cs (1)
805
return attributes.Select(attribute => KeyValuePair.Create(attribute.
AttributeKey
, attribute.AttributeValue)).ToArray();