1 instantiation of HealthReportViewModel
Aspire.Dashboard (1)
ResourceService\Partials.cs (1)
62return new HealthReportViewModel(healthReport.Key, healthReport.HasStatus ? MapHealthStatus(healthReport.Status) : null, healthReport.Description, healthReport.Exception);
4 references to HealthReportViewModel
Aspire.Dashboard (4)
Components\Controls\ResourceDetails.razor.cs (1)
42private IQueryable<HealthReportViewModel> FilteredHealthReports =>
Model\ResourceViewModel.cs (2)
23private readonly ImmutableArray<HealthReportViewModel> _healthReports = []; 69internal static HealthStatus? ComputeHealthStatus(ImmutableArray<HealthReportViewModel> healthReports, KnownResourceState? state)
ResourceService\Partials.cs (1)
60HealthReportViewModel ToHealthReportViewModel(HealthReport healthReport)