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)
Microsoft.AspNetCore.Http.Connections (1)
Microsoft.AspNetCore.RateLimiting (2)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
System.Diagnostics.DiagnosticSource (7)
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.NameResolution (1)