List Monitors
Get a list of all configured monitors in the system with their identifiers, titles, and types.
Last updated
{
"monitors": [
{
"uuid": "string",
"title": "string",
"type": "string"
}
]
}curl -L \
--request POST \
--url 'https://api.groundcover.com/api/monitors/list' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{"sources":[]}'{
"monitors": [
{
"uuid": "xxxx-xxxx-xxxx-xxxx-xxxx",
"title": "PVC usage above threshold (90%)",
"type": "metrics"
},
{
"uuid": "xxxx-xxxx-xxxx-xxxx-xxxx",
"title": "HTTP API Errors Monitor",
"type": "traces"
},
{
"uuid": "xxxxx-xxxx-xxxx-xxxx-xxxx",
"title": "Error Logs Monitor",
"type": "logs"
},
{
"uuid": "xxxxx-xxxx-xxxx-xxxx-xxxx",
"title": "Node CPU Usage Average is Above 85%",
"type": "infra"
},
{
"uuid": "xxxx-xxxx-xxxx-xxxx-xxxx",
"title": "Rolling Update Triggered",
"type": "events"
},
{
"uuid": "xxxx-xxxx-xxxx-xxxx-xxxx",
"title": "Deployment Partially Not Ready - 5m",
"type": "events"
}
]
}