2 writes to ScopeSpans
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
226ScopeSpans = scopeSpans
OtlpJsonSerializerContext.OtlpResourceSpansJson.g.cs (1)
79Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpResourceSpansJson)obj).ScopeSpans = value!,
8 references to ScopeSpans
Aspire.Dashboard (4)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
76if (json.ScopeSpans is not null) 78foreach (var ss in json.ScopeSpans)
OtlpJsonSerializerContext.OtlpResourceSpansJson.g.cs (2)
78Getter = static obj => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpResourceSpansJson)obj).ScopeSpans, 132global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpScopeSpansJson[] __value_ScopeSpans = ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpResourceSpansJson)value).ScopeSpans;
Aspire.Dashboard.Tests (4)
Model\TelemetryExportServiceTests.cs (4)
271Assert.NotNull(resourceSpans.ScopeSpans); 272Assert.Single(resourceSpans.ScopeSpans); 274var scopeSpans = resourceSpans.ScopeSpans[0]; 336var spans = result.ResourceSpans![0].ScopeSpans![0].Spans!;