1 instantiation of Histogram
System.Diagnostics.DiagnosticSource (1)
System\Diagnostics\Metrics\Meter.cs (1)
223=> (Histogram<T>)GetOrCreateInstrument<T>(typeof(Histogram<T>), name, unit, description, tags, () => new Histogram<T>(this, name, unit, description, tags, advice));
18 references to Histogram
Microsoft.AspNetCore.Hosting (1)
Internal\HostingMetrics.cs (1)
18private readonly Histogram<double> _requestDuration;
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionsMetrics.cs (1)
26private readonly Histogram<double> _connectionDuration;
Microsoft.AspNetCore.RateLimiting (2)
RateLimitingMetrics.cs (2)
17private readonly Histogram<double> _requestLeaseDurationCounter; 19private readonly Histogram<double> _queuedRequestDurationCounter;
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\KestrelMetrics.cs (2)
30private readonly Histogram<double> _connectionDuration; 35private readonly Histogram<double> _tlsHandshakeDuration;
System.Diagnostics.DiagnosticSource (7)
System\Diagnostics\Metrics\AggregationManager.cs (1)
351else if (genericDefType == typeof(Histogram<>))
System\Diagnostics\Metrics\Meter.cs (6)
181public Histogram<T> CreateHistogram<T>(string name) where T : struct 194public Histogram<T> CreateHistogram<T>(string name, string? unit, string? description) where T : struct 208public Histogram<T> CreateHistogram<T>(string name, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct 222public Histogram<T> CreateHistogram<T>(string name, string? unit = default, string? description = default, IEnumerable<KeyValuePair<string, object?>>? tags = default, InstrumentAdvice<T>? advice = default) where T : struct 223=> (Histogram<T>)GetOrCreateInstrument<T>(typeof(Histogram<T>), name, unit, description, tags, () => new Histogram<T>(this, name, unit, description, tags, advice));
System.Net.Http (4)
System\Net\Http\Metrics\HttpMetricsEnrichmentContext.cs (1)
106Histogram<double> requestDuration)
System\Net\Http\Metrics\MetricsHandler.cs (1)
16private readonly Histogram<double> _requestsDuration;
System\Net\Http\SocketsHttpHandler\Metrics\SocketsHttpHandlerMetrics.cs (2)
16public readonly Histogram<double> ConnectionDuration = meter.CreateHistogram<double>( 26public readonly Histogram<double> RequestsQueueDuration = meter.CreateHistogram<double>(
System.Net.NameResolution (1)
System\Net\NameResolutionMetrics.cs (1)
15private static readonly Histogram<double> s_lookupDuration = s_meter.CreateHistogram<double>(