6 references to Histogram
Aspire.Dashboard (5)
Components\Controls\Chart\ChartBase.cs (1)
160if (InstrumentViewModel.Instrument?.Type != OtlpInstrumentType.Histogram || InstrumentViewModel.ShowCount)
Components\Controls\Chart\ChartContainer.razor.cs (1)
296var includeExemplars = instrumentSummary.Type == OtlpInstrumentType.Histogram;
Components\Controls\Chart\MetricTable.razor.cs (1)
262return _instrument?.Type == OtlpInstrumentType.Histogram;
Model\TelemetryExportService.cs (1)
514case OtlpInstrumentType.Histogram:
Otlp\Storage\SqliteTelemetryRepository.Metrics.Writes.cs (1)
812Metric.DataOneofCase.Histogram => OtlpInstrumentType.Histogram,
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\MetricsTests.cs (1)
109Assert.Equal(OtlpInstrumentType.Histogram, instrumentSummary.Type);