UptimeRobot
update_monitor
Update a monitor's settings (name, url, interval, inverted, …). Cannot delete.
Remote vantajco/uptime
Remote (network-hosted)
Other tools also called update_monitor?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Monitor ID"
},
"url": {
"type": "string",
"description": "New target: URL for http, host for ping/smtp, host:port for tcp"
},
"name": {
"type": "string",
"description": "New display name"
},
"type": {
"enum": [
"http",
"tcp",
"smtp",
"ping",
"ssl",
"dns"
],
"type": "string",
"description": "New check type"
},
"group": {
"type": "string",
"description": "New group name"
},
"regions": {
"type": "array",
"items": {
"type": "string"
},
"description": "New probe region list"
},
"inverted": {
"type": "boolean",
"description": "Enable/disable exposure monitoring (alert when reachable)"
},
"timeout_seconds": {
"type": "integer",
"maximum": 120,
"minimum": 1,
"description": "New request timeout in seconds"
},
"interval_seconds": {
"enum": [
30,
60,
180,
300,
600,
1800,
3600,
21600,
86400
],
"type": "integer",
"description": "New check interval in seconds"
},
"expected_status_codes": {
"type": "array",
"items": {
"type": "integer"
},
"description": "HTTP status codes considered up"
}
}
}