1 instantiation of Counter
System.Diagnostics.DiagnosticSource (1)
41 references to Counter
Aspire.Confluent.Kafka (8)
Microsoft.AspNetCore.Diagnostics (1)
Microsoft.AspNetCore.RateLimiting (1)
Microsoft.AspNetCore.Routing (1)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Microsoft.Extensions.Diagnostics.Testing (1)
Microsoft.Extensions.Diagnostics.Testing.Tests (21)
Stress.ApiService (1)
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Metrics\Meter.cs (4)
134public Counter<T> CreateCounter<T>(string name, string? unit = null, string? description = null) where T : struct => CreateCounter<T>(name, unit, description, tags: null);
147public Counter<T> CreateCounter<T>(string name, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct
148=> (Counter<T>)GetOrCreateInstrument<T>(typeof(Counter<T>), name, unit, description, tags, () => new Counter<T>(this, name, unit, description, tags));