Get Monitor

Retrieve detailed configuration for a specific monitor by its UUID, including queries, thresholds, display settings, and evaluation parameters.

Endpoint

GET /api/monitors/{uuid}

Authentication

This endpoint requires API Key authentication via the Authorization header.

Headers

Header
Required
Description

Authorization

Yes

Bearer token with your API key

Content-Type

Yes

Must be application/json

Accept

Yes

Must be application/json

Path Parameters

Parameter
Type
Required
Description

uuid

string

Yes

The unique identifier of the monitor to retrieve

Field Descriptions

Field
Type
Description

title

string

Monitor name/title

display.header

string

Alert header template with variable substitution

display.resourceHeaderLabels

array

Labels shown in resource headers

display.contextHeaderLabels

array

Labels shown in context headers

display.description

string

Monitor description

severity

string

Alert severity level (e.g., "S1", "S2", "S3")

measurementType

string

Type of measurement ("state", "event")

model.queries

array

Query configurations for data retrieval

model.thresholds

array

Threshold configurations for alerting

executionErrorState

string

State when execution fails ("OK", "ALERTING")

noDataState

string

State when no data is available ("OK", "ALERTING")

evaluationInterval.interval

string

How often to evaluate the monitor

evaluationInterval.pendingFor

string

How long to wait before alerting

isPaused

boolean

Whether the monitor is currently paused

Examples

Basic Request

Get monitor configuration by UUID:

Response Example - Metrics Monitor

Last updated