HealthReport: {
    entries: {
        [key: string]: HealthReportEntry;
    };
    status: HealthStatus;
    totalDuration: string;
}

Represents the result of executing a group of IHealthCheck instances.

Type declaration

  • entries: {
        [key: string]: HealthReportEntry;
    }

    A record containing the results from each health check.

  • status: HealthStatus

    A HealthStatus representing the aggregate status of all the health checks. The value of Status will be the most servere status reported by a health check. If no checks were executed, the value is always Healthy.

  • totalDuration: string

    The time the health check service took to execute.

Generated using TypeDoc