22 instantiations of ActivityTagsCollection
aspire (4)
Projects\ProcessGuestLauncher.cs (1)
217activity.AddEvent(new ActivityEvent(eventName, tags: new ActivityTagsCollection
Telemetry\AspireCliTelemetry.cs (1)
201var tags = new ActivityTagsCollection
Telemetry\ProfilingTelemetry.cs (2)
837activity?.AddEvent(new ActivityEvent(Events.BackchannelConnectAttempt, tags: new ActivityTagsCollection 878activity?.AddEvent(new ActivityEvent(Events.DotNetProcessStarted, tags: new ActivityTagsCollection
Aspire.Hosting (8)
Diagnostics\ProfilingTelemetry.cs (8)
779activity?.AddEvent(new ActivityEvent(Events.DcpServiceAddressAllocated, tags: new ActivityTagsCollection 787activity?.AddEvent(new ActivityEvent(Events.DcpServiceAddressAllocationFailed, tags: new ActivityTagsCollection 816activity?.AddEvent(new ActivityEvent(Events.KubernetesApiRetry, tags: new ActivityTagsCollection 839activity?.AddEvent(new ActivityEvent(Events.ResourceWaitCancelled, tags: new ActivityTagsCollection 897activity?.AddEvent(new ActivityEvent(Events.KubernetesClientReady, tags: new ActivityTagsCollection 1010activity.AddEvent(new ActivityEvent(Events.Exception, tags: new ActivityTagsCollection 1099var tags = new ActivityTagsCollection 1139var tags = new ActivityTagsCollection
Aspire.Hosting.RemoteHost (2)
Diagnostics\RemoteHostProfilingTelemetry.cs (2)
369activity?.AddEvent(new ActivityEvent(Events.JsonRpcClientConnected, tags: new ActivityTagsCollection 451activity.AddEvent(new ActivityEvent(Events.Exception, tags: new ActivityTagsCollection
Stress.ApiService (7)
Program.cs (5)
842var eval1Tags = new ActivityTagsCollection 853var eval2Tags = new ActivityTagsCollection 863var eval3Tags = new ActivityTagsCollection 873var eval4Tags = new ActivityTagsCollection 884var eval5Tags = new ActivityTagsCollection
TraceCreator.cs (2)
119var activityTags = new ActivityTagsCollection(); 137var activityTags = new ActivityTagsCollection();
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\ActivityCreationOptions.cs (1)
122Unsafe.AsRef(in _samplerTags) = new ActivityTagsCollection();
20 references to ActivityTagsCollection
aspire (1)
Telemetry\AspireCliTelemetry.cs (1)
201var tags = new ActivityTagsCollection
Aspire.Hosting (2)
Diagnostics\ProfilingTelemetry.cs (2)
1099var tags = new ActivityTagsCollection 1139var tags = new ActivityTagsCollection
dotnet (1)
Telemetry\TelemetryClient.cs (1)
368private static ActivityTagsCollection MakeTags(IDictionary<string, string?> eventProperties)
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Telemetry\TelemetryClient.cs (1)
368private static ActivityTagsCollection MakeTags(IDictionary<string, string?> eventProperties)
Stress.ApiService (7)
Program.cs (5)
842var eval1Tags = new ActivityTagsCollection 853var eval2Tags = new ActivityTagsCollection 863var eval3Tags = new ActivityTagsCollection 873var eval4Tags = new ActivityTagsCollection 884var eval5Tags = new ActivityTagsCollection
TraceCreator.cs (2)
119var activityTags = new ActivityTagsCollection(); 137var activityTags = new ActivityTagsCollection();
System.Diagnostics.DiagnosticSource (8)
System\Diagnostics\Activity.cs (1)
1191ActivityTagsCollection? samplerTags, ActivitySamplingResult request, bool startIt, ActivityIdFormat idFormat, string? traceState)
System\Diagnostics\ActivityCreationOptions.cs (3)
14private readonly ActivityTagsCollection? _samplerTags; 115public ActivityTagsCollection SamplingTags 178internal ActivityTagsCollection? GetSamplingTags() => _samplerTags;
System\Diagnostics\ActivityEvent.cs (1)
32public ActivityEvent(string name, DateTimeOffset timestamp = default, ActivityTagsCollection? tags = null) : this(name, timestamp, tags, tags is null ? 0 : tags.Count) { }
System\Diagnostics\ActivityLink.cs (1)
25public ActivityLink(ActivityContext context, ActivityTagsCollection? tags = null)
System\Diagnostics\ActivitySource.cs (2)
243ActivityTagsCollection? samplerTags; 307ActivityTagsCollection? atc = acoContext.GetSamplingTags();