45 instantiations of GetInstrumentRequest
Aspire.Dashboard (2)
Components\Controls\Chart\ChartContainer.razor.cs (1)
305var refreshedInstrument = await TelemetryRepository.GetInstrumentAsync(new GetInstrumentRequest
Model\TelemetryExportService.cs (1)
201var instrumentData = await _dataSource.TelemetryRepository.GetInstrumentAsync(new GetInstrumentRequest
Aspire.Dashboard.Tests (43)
Integration\OtlpHttpJsonTests.cs (1)
769var instrumentData = await telemetryRepository.GetInstrumentAsync(new GetInstrumentRequest
Model\TelemetryExportServiceTests.cs (2)
552var instrumentData = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 640var instrumentData = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest
TelemetryRepositoryTests\MetricsTests.cs (38)
161var instrument = (await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 262var instrument = (await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 313var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 380var instrumentData = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 415var filteredInstrumentData = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 482var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 589var instrument = (await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 707var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 883var resource1Test1Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 898var resource1Test2Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 928var resource2Test1Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 943var resource2Test3Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1028var resource1Test1Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1039var resource1Test2Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1068var resource2Test1Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1083var resource2Test3Instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1184var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1248var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1294var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1374var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1443var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1506var instrument1 = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1523var instrument2 = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1617var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1661var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1696var instrument = await repository.GetInstrumentAsync(new GetInstrumentRequest 1728var instrument = await repository.GetInstrumentAsync(new GetInstrumentRequest 1773var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1823var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1902var initialInstrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1937var refreshedInstrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 1993var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 2059return (await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 2114var instrument = await repositoryContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 2223var histogramInstrument = await repository.GetInstrumentAsync(new GetInstrumentRequest 2235var sumInstrument = await repository.GetInstrumentAsync(new GetInstrumentRequest 2299var instrument = await repository.GetInstrumentAsync(new GetInstrumentRequest 2362var instrument = await repository.GetInstrumentAsync(new GetInstrumentRequest
TelemetryRepositoryTests\SqliteTelemetryPersistenceTests.cs (2)
415var instrument = await historicalContext.Repository.GetInstrumentAsync(new GetInstrumentRequest 494var instrument = await reopenedContext.Repository.GetInstrumentAsync(new GetInstrumentRequest
4 references to GetInstrumentRequest
Aspire.Dashboard (3)
Otlp\Storage\ITelemetryRepository.cs (1)
64Task<OtlpInstrumentData?> GetInstrumentAsync(GetInstrumentRequest request, CancellationToken cancellationToken);
Otlp\Storage\SqliteTelemetryRepository.cs (1)
231public Task<OtlpInstrumentData?> GetInstrumentAsync(GetInstrumentRequest request, CancellationToken cancellationToken) =>
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (1)
110private OtlpInstrumentData? GetInstrumentFromDatabase(GetInstrumentRequest request, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (1)
Shared\TestTelemetryRepository.cs (1)
52public Task<OtlpInstrumentData?> GetInstrumentAsync(GetInstrumentRequest request, CancellationToken cancellationToken) => inner.GetInstrumentAsync(request, cancellationToken);