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)
49
var value = new
HistogramValue
(Values, Sum, Count, Start, End, ExplicitBounds);
9 references to HistogramValue
Aspire.Dashboard (9)
Components\Controls\Chart\ChartBase.cs (5)
206
private static
HistogramValue
GetHistogramValue(MetricValueBase metric)
208
if (metric is
HistogramValue
histogramValue)
234
var
histogramValue = GetHistogramValue(metric);
337
private static ulong CountBuckets(
HistogramValue
histogramValue)
455
HistogramValue
histogramValue => histogramValue.Count,
Otlp\Model\MetricValues\DimensionScope.cs (2)
85
var
lastHistogramValue = _lastValue as
HistogramValue
;
Otlp\Model\MetricValues\HistogramValue.cs (2)
49
var
value = new HistogramValue(Values, Sum, Count, Start, End, ExplicitBounds);
59
return obj is
HistogramValue
other