1 instantiation of UpDownCounter
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\Meter.cs (1)
195=> (UpDownCounter<T>)GetOrCreateInstrument<T>(typeof(UpDownCounter<T>), name, unit, description, tags, () => new UpDownCounter<T>(this, name, unit, description, tags));
16 references to UpDownCounter
Microsoft.AspNetCore.Hosting (1)
Internal\HostingMetrics.cs (1)
17private readonly UpDownCounter<long> _activeRequestsCounter;
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionsMetrics.cs (1)
27private readonly UpDownCounter<long> _currentConnectionsCounter;
Microsoft.AspNetCore.RateLimiting (2)
RateLimitingMetrics.cs (2)
15private readonly UpDownCounter<long> _activeRequestLeasesCounter; 17private readonly UpDownCounter<long> _queuedRequestsCounter;
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Infrastructure\KestrelMetrics.cs (5)
25private readonly UpDownCounter<long> _activeConnectionsCounter; 28private readonly UpDownCounter<long> _queuedConnectionsCounter; 29private readonly UpDownCounter<long> _queuedRequestsCounter; 30private readonly UpDownCounter<long> _currentUpgradedRequestsCounter; 32private readonly UpDownCounter<long> _activeTlsHandshakesCounter;
System.Diagnostics.DiagnosticSource (5)
System\Diagnostics\Metrics\AggregationManager.cs (1)
342else if (genericDefType == typeof(UpDownCounter<>))
System\Diagnostics\Metrics\Meter.cs (4)
180public UpDownCounter<T> CreateUpDownCounter<T>(string name, string? unit = null, string? description = null) where T : struct 194public UpDownCounter<T> CreateUpDownCounter<T>(string name, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct 195=> (UpDownCounter<T>)GetOrCreateInstrument<T>(typeof(UpDownCounter<T>), name, unit, description, tags, () => new UpDownCounter<T>(this, name, unit, description, tags));
System.Net.Http (2)
System\Net\Http\Metrics\MetricsHandler.cs (1)
15private readonly UpDownCounter<long> _activeRequests;
System\Net\Http\SocketsHttpHandler\Metrics\SocketsHttpHandlerMetrics.cs (1)
11public readonly UpDownCounter<long> OpenConnections = meter.CreateUpDownCounter<long>(