5 writes to Scope
Aspire.Dashboard (4)
Model\TelemetryExportService.cs (3)
294Scope = ConvertScope(scopeGroup.Key), 326Scope = ConvertScope(span.Scope), 353Scope = ConvertScope(scopeGroup.Key),
OtlpJsonSerializerContext.OtlpScopeSpansJson.g.cs (1)
59Setter = static (obj, value) => ((global::Aspire.Otlp.Serialization.OtlpScopeSpansJson)obj).Scope = value!,
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
492Scope = new OtlpInstrumentationScopeJson { Name = "TestScope" },
7 references to Scope
Aspire.Dashboard (5)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
94if (json.Scope is not null) 96scopeSpans.Scope = ToProtobuf(json.Scope);
OtlpJsonSerializerContext.OtlpScopeSpansJson.g.cs (2)
58Getter = static obj => ((global::Aspire.Otlp.Serialization.OtlpScopeSpansJson)obj).Scope, 126global::Aspire.Otlp.Serialization.OtlpInstrumentationScopeJson __value_Scope = ((global::Aspire.Otlp.Serialization.OtlpScopeSpansJson)value).Scope;
src\Shared\ConsoleLogs\SharedAIHelpers.cs (1)
172var scopeName = scopeSpan.Scope?.Name;
Aspire.Dashboard.Tests (2)
Model\TelemetryExportServiceTests.cs (2)
310Assert.NotNull(scopeSpans.Scope); 311Assert.Equal("TestTracer", scopeSpans.Scope.Name);