2 implementations of Tags
Microsoft.AspNetCore.Hosting (1)
Internal\HttpMetricsTagsFeature.cs (1)
10ICollection<KeyValuePair<string, object?>> IHttpMetricsTagsFeature.Tags => TagsList;
Microsoft.AspNetCore.Hosting.Tests (1)
HostingMetricsTests.cs (1)
182public ICollection<KeyValuePair<string, object>> Tags { get; } = new Collection<KeyValuePair<string, object>>();
4 references to Tags
Microsoft.AspNetCore.Diagnostics (1)
src\Shared\Metrics\MetricsExtensions.cs (1)
14var tags = feature.Tags;
Microsoft.AspNetCore.Hosting (1)
src\Shared\Metrics\MetricsExtensions.cs (1)
14var tags = feature.Tags;
Microsoft.AspNetCore.Hosting.Tests (1)
HostingApplicationDiagnosticsTests.cs (1)
271context.HttpContext.Features.GetRequiredFeature<IHttpMetricsTagsFeature>().Tags.Add(new KeyValuePair<string, object>("custom.tag", "custom.value"));
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\Shared\Metrics\MetricsExtensions.cs (1)
14var tags = feature.Tags;