2 instantiations of HistogramValue
Aspire.Dashboard (2)
Otlp\Model\MetricValues\DimensionScope.cs (1)
106
_lastValue = new
HistogramValue
(h.BucketCounts.ToArray(), 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)
203
private static
HistogramValue
GetHistogramValue(MetricValueBase metric)
205
if (metric is
HistogramValue
histogramValue)
231
var
histogramValue = GetHistogramValue(metric);
334
private static ulong CountBuckets(
HistogramValue
histogramValue)
452
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