6 instantiations of ObservableGauge
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Metrics\Meter.cs (6)
425new ObservableGauge<T>(this, name, observeValue, unit, description, tags: null); 436new ObservableGauge<T>(this, name, observeValue, unit, description, tags); 446new ObservableGauge<T>(this, name, observeValue, unit, description, tags: null); 457new ObservableGauge<T>(this, name, observeValue, unit, description, tags); 467new ObservableGauge<T>(this, name, observeValues, unit, description, tags: null); 478new ObservableGauge<T>(this, name, observeValues, unit, description, tags);
25 references to ObservableGauge
Microsoft.Extensions.Diagnostics.ResourceMonitoring (6)
src\Shared\Instruments\ResourceUtilizationInstruments.cs (6)
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}"/>. 73/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 81/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>.
Shared (6)
Instruments\ResourceUtilizationInstruments.cs (6)
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}"/>. 73/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>. 81/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableGauge{T}"/>.
System.Diagnostics.DiagnosticSource (7)
System\Diagnostics\Metrics\AggregationManager.cs (1)
404else if (genericDefType == typeof(ObservableGauge<>))
System\Diagnostics\Metrics\Meter.cs (6)
424public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<T> observeValue, string? unit = null, string? description = null) where T : struct => 435public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<T> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 445public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<Measurement<T>> observeValue, string? unit = null, string? description = null) where T : struct => 456public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<Measurement<T>> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 466public ObservableGauge<T> CreateObservableGauge<T>(string name, Func<IEnumerable<Measurement<T>>> observeValues, string? unit = null, string? description = null) where T : struct => 477public 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>(