Interface CheckOptions

interface CheckOptions {
    alias?: string;
    apdex_t?: number;
    customHeaders?: CustomHeaders;
    disabledLocations?: string[];
    enabled?: boolean;
    mute_until?: string;
    period?: number;
    published?: boolean;
    string_match?: string;
}

Properties

alias?: string

Human readable name

apdex_t?: number

APDEX threshold in seconds (0.125, 0.25, 0.5, 1.0 or 2.0)

customHeaders?: CustomHeaders

The HTTP headers you want in updown requests. Ex: custom_headers[X-Api-Key]=xxxxxxxxx

disabledLocations?: string[]

Disabled monitoring locations. It's an array of abbreviated location names. Can be any of these: ["lan", "mia", "bhs", "gra", "fra", "sin", "tok", "syd"]. Ex: disabled_locations[]=lan&disabled_locations[]=syd

enabled?: boolean

Is the check enabled (true or false)

mute_until?: string

Mute notifications until given time, accepts a time, 'recovery' or 'forever'

period?: number

Interval in seconds (15, 30, 60, 120, 300, 600, 1800 or 3600)

published?: boolean

Shall the status page be public (true or false)

string_match?: string

Search for this string in the page

Generated using TypeDoc