HealthcheckResult stores information about a single run of a healthcheck probe HealthcheckResult

interface HealthcheckResult {
    End?: string;
    ExitCode?: number;
    Output?: string;
    Start?: string;
}

Properties

End?: string

Date and time at which this check ended in RFC 3339 format with nano-seconds.

ExitCode?: number

ExitCode meanings: - 0 healthy - 1 unhealthy - 2 reserved (considered unhealthy) - other values: error running probe

Output?: string

Output from last check

Start?: string

Date and time at which this check started in RFC 3339 format with nano-seconds.