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