4 writes to SpanId
Aspire.Dashboard (3)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\metrics\v1\Metrics.cs (2)
6176SpanId = other.SpanId; 6261SpanId = input.ReadBytes();
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (1)
736exemplar.SpanId = HexToByteString(json.SpanId);
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\MetricsTests.cs (1)
415SpanId = ByteString.CopyFrom(Encoding.UTF8.GetBytes("span-id")),
12 references to SpanId
Aspire.Dashboard (12)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\metrics\v1\Metrics.cs (10)
6046if (SpanId != other.SpanId) return false; 6060if (SpanId.Length != 0) hash ^= SpanId.GetHashCode(); 6120if (SpanId.Length != 0) { 6122output.WriteBytes(SpanId); 6153if (SpanId.Length != 0) { 6154size += 1 + pb::CodedOutputStream.ComputeBytesSize(SpanId); 6175if (other.SpanId.Length != 0) { 6176SpanId = other.SpanId;
Otlp\Model\MetricValues\DimensionScope.cs (2)
126if (exemplar.TraceId == null || exemplar.SpanId == null) 153SpanId = exemplar.SpanId.ToHexString(),