2 writes to Scope
Aspire.Dashboard (2)
Model\TelemetryExportService.cs (1)
215Scope = ConvertScope(scopeGroup.Key),
OtlpJsonSerializerContext.OtlpScopeSpansJson.g.cs (1)
59Setter = static (obj, value) => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpScopeSpansJson)obj).Scope = value!,
6 references to Scope
Aspire.Dashboard (4)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
93if (json.Scope is not null) 95scopeSpans.Scope = ToProtobuf(json.Scope);
OtlpJsonSerializerContext.OtlpScopeSpansJson.g.cs (2)
58Getter = static obj => ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpScopeSpansJson)obj).Scope, 126global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpInstrumentationScopeJson __value_Scope = ((global::Aspire.Dashboard.Otlp.Model.Serialization.OtlpScopeSpansJson)value).Scope;
Aspire.Dashboard.Tests (2)
Model\TelemetryExportServiceTests.cs (2)
275Assert.NotNull(scopeSpans.Scope); 276Assert.Equal("TestTracer", scopeSpans.Scope.Name);