4 writes to Scope
Aspire.Dashboard (3)
Model\TelemetryExportService.cs (3)
295Scope = ConvertScope(scopeGroup.Key), 327Scope = ConvertScope(span.Scope), 354Scope = ConvertScope(scopeGroup.Key),
Aspire.Dashboard.Tests (1)
Model\TelemetryImportServiceTests.cs (1)
492Scope = new OtlpInstrumentationScopeJson { Name = "TestScope" },
5 references to Scope
Aspire.Dashboard (3)
Otlp\Model\Serialization\OtlpJsonProtobufConverter.cs (2)
94if (json.Scope is not null) 96scopeSpans.Scope = ToProtobuf(json.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);