2 instantiations of HistogramValue
Aspire.Dashboard (2)
Otlp\Model\MetricValues\DimensionScope.cs (1)
113_lastValue = new HistogramValue(bucketCounts, h.Sum, h.Count, start, end, explicitBounds);
Otlp\Model\MetricValues\HistogramValue.cs (1)
49var value = new HistogramValue(Values, Sum, Count, Start, End, ExplicitBounds);
10 references to HistogramValue
Aspire.Dashboard (10)
Components\Controls\Chart\ChartBase.cs (5)
201private static HistogramValue GetHistogramValue(MetricValueBase metric) 203if (metric is HistogramValue histogramValue) 229var histogramValue = GetHistogramValue(metric); 332private static ulong CountBuckets(HistogramValue histogramValue) 450HistogramValue histogramValue => histogramValue.Count,
Model\TelemetryExportService.cs (1)
560if (value is not HistogramValue histogramValue)
Otlp\Model\MetricValues\DimensionScope.cs (2)
85var lastHistogramValue = _lastValue as HistogramValue;
Otlp\Model\MetricValues\HistogramValue.cs (2)
49var value = new HistogramValue(Values, Sum, Count, Start, End, ExplicitBounds); 59return obj is HistogramValue other