16 references to AddBaggage
Microsoft.AspNetCore.Diagnostics (1)
src\Shared\Diagnostics\ActivityCreator.cs (1)
117activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (1)
src\Shared\Diagnostics\ActivityCreator.cs (1)
117activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.AspNetCore.Hosting (1)
src\Shared\Diagnostics\ActivityCreator.cs (1)
117activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (3)
HubConnectionTests.Tracing.cs (3)
78clientParentActivity1.AddBaggage("baggage-1", "value-1"); 100clientParentActivity2.AddBaggage("baggage-2", "value-2"); 261clientParentActivity.AddBaggage("baggage-1", "value-1");
Microsoft.AspNetCore.SignalR.Core (1)
src\Shared\Diagnostics\ActivityCreator.cs (1)
117activity.AddBaggage(baggageItem.Key, baggageItem.Value);
Microsoft.Extensions.Telemetry.Tests (8)
Logging\ExtendedLoggerFactoryTests.cs (8)
206activity.AddBaggage("baggageTestKey1", "baggageTestValue"); 256activity.AddBaggage("testKey1", null); 257activity.AddBaggage("testKey2", string.Empty); 258activity.AddBaggage("testKey3", "testValue"); 319activity.AddBaggage("testBaggageKey1", "testBaggageValue"); 350activity.AddBaggage("MyBaggageKey1", "1"); 359activity.AddBaggage("MyBaggageKey2", "2"); 366activity.AddBaggage("MyBaggageKey3", "3");
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Activity.cs (1)
428/// Returns the value of the key-value pair added to the activity with <see cref="AddBaggage(string, string)"/>.