3 instantiations of OtlpScope
Aspire.Dashboard (3)
Otlp\Model\OtlpScope.cs (1)
14public static readonly OtlpScope Empty = new OtlpScope();
Otlp\Storage\TelemetryRepository.cs (2)
300scope = (sl.Scope != null) ? new OtlpScope(sl.Scope, _dashboardOptions.TelemetryLimits) : OtlpScope.Empty; 668scope = (scopeSpan.Scope != null) ? new OtlpScope(scopeSpan.Scope, _dashboardOptions.TelemetryLimits) : OtlpScope.Empty;
10 references to OtlpScope
Aspire.Dashboard (10)
Otlp\Model\OtlpLogEntry.cs (2)
23public OtlpScope Scope { get; } 26public OtlpLogEntry(LogRecord record, OtlpApplication logApp, OtlpScope scope, TelemetryLimitOptions options)
Otlp\Model\OtlpScope.cs (1)
14public static readonly OtlpScope Empty = new OtlpScope();
Otlp\Storage\TelemetryRepository.cs (7)
36private readonly Dictionary<string, OtlpScope> _logScopes = new(); 42private readonly Dictionary<string, OtlpScope> _traceScopes = new(); 291OtlpScope? scope; 300scope = (sl.Scope != null) ? new OtlpScope(sl.Scope, _dashboardOptions.TelemetryLimits) : OtlpScope.Empty; 659OtlpScope? scope; 668scope = (scopeSpan.Scope != null) ? new OtlpScope(scopeSpan.Scope, _dashboardOptions.TelemetryLimits) : OtlpScope.Empty; 864private static OtlpSpan CreateSpan(OtlpApplication application, Span span, OtlpTrace trace, OtlpScope scope, TelemetryLimitOptions options)