6 instantiations of ObservableUpDownCounter
System.Diagnostics.DiagnosticSource (6)
System\Diagnostics\Metrics\Meter.cs (6)
264new ObservableUpDownCounter<T>(this, name, observeValue, unit, description, tags: null); 278new ObservableUpDownCounter<T>(this, name, observeValue, unit, description, tags); 292new ObservableUpDownCounter<T>(this, name, observeValue, unit, description, tags: null); 306new ObservableUpDownCounter<T>(this, name, observeValue, unit, description, tags); 319new ObservableUpDownCounter<T>(this, name, observeValues, unit, description, tags: null); 333new ObservableUpDownCounter<T>(this, name, observeValues, unit, description, tags);
11 references to ObservableUpDownCounter
Microsoft.Extensions.Diagnostics.ResourceMonitoring (2)
src\Shared\Instruments\ResourceUtilizationInstruments.cs (2)
65/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableUpDownCounter{T}"/>. 113/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableUpDownCounter{T}"/>.
Shared (2)
Instruments\ResourceUtilizationInstruments.cs (2)
65/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableUpDownCounter{T}"/>. 113/// The type of an instrument is <see cref="System.Diagnostics.Metrics.ObservableUpDownCounter{T}"/>.
System.Diagnostics.DiagnosticSource (7)
System\Diagnostics\Metrics\AggregationManager.cs (1)
445else if (genericDefType == typeof(ObservableUpDownCounter<>))
System\Diagnostics\Metrics\Meter.cs (6)
263public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<T> observeValue, string? unit = null, string? description = null) where T : struct => 277public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<T> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 291public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<Measurement<T>> observeValue, string? unit = null, string? description = null) where T : struct => 305public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<Measurement<T>> observeValue, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct => 318public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<IEnumerable<Measurement<T>>> observeValues, string? unit = null, string? description = null) where T : struct => 332public ObservableUpDownCounter<T> CreateObservableUpDownCounter<T>(string name, Func<IEnumerable<Measurement<T>>> observeValues, string? unit, string? description, IEnumerable<KeyValuePair<string, object?>>? tags) where T : struct =>