3 writes to ScopeSpans
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
263ScopeSpans = scopeSpans
OtlpJsonSerializerContext.OtlpResourceSpansJson.g.cs (1)
79Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpResourceSpansJson)obj).ScopeSpans = value!,
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
464ScopeSpans =
9 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 (5)
Model\TelemetryExportServiceTests.cs (5)
275Assert.NotNull(resourceSpans.ScopeSpans); 276Assert.Single(resourceSpans.ScopeSpans); 278var scopeSpans = resourceSpans.ScopeSpans[0]; 340var spans = result.ResourceSpans![0].ScopeSpans![0].Spans!; 509var span = tracesData?.ResourceSpans?.FirstOrDefault()?.ScopeSpans?.FirstOrDefault()?.Spans?.FirstOrDefault();