1 write to Instrument
Aspire.Dashboard (1)
Model\InstrumentViewModel.cs (1)
32Instrument = instrument;
12 references to Instrument
Aspire.Dashboard (11)
Components\Controls\Chart\ChartBase.cs (7)
82InstrumentViewModel.Instrument is null || 101if (_renderedInstrument is null || _renderedInstrument != InstrumentViewModel.Instrument.GetKey() || 107_renderedInstrument = InstrumentViewModel.Instrument.GetKey(); 141return $"<b>{HttpUtility.HtmlEncode(InstrumentViewModel.Instrument?.Name)}</b><br />{HttpUtility.HtmlEncode(name)}: {FormatHelpers.FormatNumberWithOptionalDecimalPlaces(yValue, maxDecimalPlaces: 6, CultureInfo.CurrentCulture)}<br />Time: {FormatHelpers.FormatTime(TimeProvider, TimeProvider.ToLocal(xValue))}"; 151Debug.Assert(InstrumentViewModel.Instrument != null); 154? GetDisplayedUnit(InstrumentViewModel.Instrument) 160if (InstrumentViewModel.Instrument?.Type != OtlpInstrumentType.Histogram || InstrumentViewModel.ShowCount)
Components\Controls\Chart\MetricTable.razor.cs (3)
51if (!Equals(_instrument?.Name, InstrumentViewModel.Instrument?.Name) || _showCount != InstrumentViewModel.ShowCount) 58_instrument = InstrumentViewModel.Instrument; 106Instrument = InstrumentViewModel.Instrument!
Components\Controls\Chart\PlotlyChart.razor.cs (1)
47if (InstrumentViewModel?.Instrument is { } instrument)
Aspire.Dashboard.Components.Tests (1)
Pages\MetricsTests.cs (1)
244Assert.Equal("instrument-2", updatedTable.Instance.InstrumentViewModel.Instrument?.Name);