1 instantiation of HealthReportViewModel
Aspire.Dashboard (1)
ResourceService\Partials.cs (1)
62
return 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)
42
private IQueryable<
HealthReportViewModel
> FilteredHealthReports =>
Model\ResourceViewModel.cs (2)
23
private readonly ImmutableArray<
HealthReportViewModel
> _healthReports = [];
69
internal static HealthStatus? ComputeHealthStatus(ImmutableArray<
HealthReportViewModel
> healthReports, KnownResourceState? state)
ResourceService\Partials.cs (1)
60
HealthReportViewModel
ToHealthReportViewModel(HealthReport healthReport)