1 implementation of Tags
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelConnectionOfT.cs (1)
103ICollection<KeyValuePair<string, object?>> IConnectionMetricsTagsFeature.Tags => TagsList;
11 references to Tags
Microsoft.AspNetCore.Diagnostics (2)
src\aspnetcore\src\Shared\Metrics\MetricsExtensions.cs (2)
21var tags = feature.Tags; 28var tags = feature.Tags;
Microsoft.AspNetCore.Hosting (2)
src\aspnetcore\src\Shared\Metrics\MetricsExtensions.cs (2)
21var tags = feature.Tags; 28var tags = feature.Tags;
Microsoft.AspNetCore.Server.Kestrel.Core (7)
Internal\HttpConnection.cs (2)
140metricsTags.Tags.Add(new KeyValuePair<string, object?>("network.protocol.name", "http")); 141metricsTags.Tags.Add(new KeyValuePair<string, object?>("network.protocol.version", httpVersion));
Middleware\HttpMultiplexedConnectionMiddleware.cs (1)
50metricsTags.Tags.Add(new KeyValuePair<string, object?>("tls.protocol.version", "1.3"));
Middleware\HttpsConnectionMiddleware.cs (2)
234metricsTagsFeature.Tags.Add(new KeyValuePair<string, object?>("tls.protocol.name", protocolName)); 236metricsTagsFeature.Tags.Add(new KeyValuePair<string, object?>("tls.protocol.version", protocolVersion));
src\aspnetcore\src\Shared\Metrics\MetricsExtensions.cs (2)
21var tags = feature.Tags; 28var tags = feature.Tags;