1 instantiation of UpDownCounter
System.Diagnostics.DiagnosticSource (1)
16 references to UpDownCounter
Microsoft.AspNetCore.Hosting (1)
Microsoft.AspNetCore.Http.Connections (1)
Microsoft.AspNetCore.RateLimiting (2)
Microsoft.AspNetCore.Server.Kestrel.Core (5)
System.Diagnostics.DiagnosticSource (5)
System\Diagnostics\Metrics\Meter.cs (4)
235public UpDownCounter<T> CreateUpDownCounter<T>(string name, string? unit = null, string? description = null) where T : struct
249public UpDownCounter<T> CreateUpDownCounter<T>(string name, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct
250=> (UpDownCounter<T>)GetOrCreateInstrument<T>(typeof(UpDownCounter<T>), name, unit, description, tags, () => new UpDownCounter<T>(this, name, unit, description, tags));
System.Net.Http (2)