Represents a request to the gatus external endpoint API.

interface ExternalEndpointStatus {
    duration?: number;
    error?: string;
    success: boolean;
}

Properties

duration?: number

Optional duration in milliseconds of how long the health check took to run.

error?: string

Optional error messages seperated by \n if success is false.

success: boolean

Whether the specified status was successful or not.