6 instantiations of ObservableGauge
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Metrics\Meter.cs (6)
431new ObservableGauge<T>(this, name, observeValue, unit, description, tags: null); 442new ObservableGauge<T>(this, name, observeValue, unit, description, tags); 452new ObservableGauge<T>(this, name, observeValue, unit, description, tags: null); 463new ObservableGauge<T>(this, name, observeValue, unit, description, tags); 473new ObservableGauge<T>(this, name, observeValues, unit, description, tags: null); 484new ObservableGauge<T>(this, name, observeValues, unit, description, tags);
23 references to ObservableGauge
Microsoft.Extensions.Diagnostics.ResourceMonitoring (5)
src\Shared\Instruments\ResourceUtilizationInstruments.cs (5)
25/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 33/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 41/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 49/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 57/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>.
Shared (5)
Instruments\ResourceUtilizationInstruments.cs (5)
25/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 33/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 41/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 49/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 57/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>.
System.Diagnostics.DiagnosticSource (7)
System\Diagnostics\Metrics\AggregationManager.cs (1)
331else if (genericDefType == typeof(ObservableGauge<>))
System\Diagnostics\Metrics\Meter.cs (6)
430public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<T> observeValue, string? unit = null, string? description = null) where T : struct => 441public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<T> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 451public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<Measurement<T>> observeValue, string? unit = null, string? description = null) where T : struct => 462public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<Measurement<T>> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 472public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<IEnumerable<Measurement<T>>> observeValues, string? unit = null, string? description = null) where T : struct => 483public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<IEnumerable<Measurement<T>>> observeValues, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct =>
System.Net.Quic (6)
System\Net\Quic\NetEventSource.Quic.Counters.cs (6)
50public static readonly ObservableGauge<long> s_CONN_ACTIVE = s_meter.CreateObservableGauge<long>( 56public static readonly ObservableGauge<long> s_CONN_CONNECTED = s_meter.CreateObservableGauge<long>( 74public static readonly ObservableGauge<long> s_STRM_ACTIVE = s_meter.CreateObservableGauge<long>( 146public static readonly ObservableGauge<long> s_CONN_QUEUE_DEPTH = s_meter.CreateObservableGauge<long>( 152public static readonly ObservableGauge<long> s_CONN_OPER_QUEUE_DEPTH = s_meter.CreateObservableGauge<long>( 170public static readonly ObservableGauge<long> s_WORK_OPER_QUEUE_DEPTH = s_meter.CreateObservableGauge<long>(