KosmoKrator

analytics

Pingdom CLI for CI

Use the Pingdom CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 6 read 1 write API key auth

Pingdom CLI for CI

Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.

Use this shape when a pipeline needs to read or update an external service. The Pingdom CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Pingdom CLI for CI
kosmokrator integrations:configure pingdom --set api_key="$PINGDOM_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call pingdom.pingdom_list_checks '{"limit":1,"offset":1,"status":"example_status","tags":"example_tags"}' --json

Discovery Before Execution

Agents and scripts can inspect Pingdom docs and schemas before choosing a function.

kosmo integrations:docs pingdom --json
kosmo integrations:docs pingdom.pingdom_list_checks --json
kosmo integrations:schema pingdom.pingdom_list_checks --json
kosmo integrations:search "Pingdom" --json
kosmo integrations:list --json

Useful Pingdom CLI Functions

FunctionTypeParametersDescription
pingdom.pingdom_list_checks Read limit, offset, status, tags List all uptime checks in Pingdom. Returns check IDs, names, hostnames, statuses, and last test times.
pingdom.pingdom_get_check Read check_id Get detailed information about a specific Pingdom uptime check, including configuration, current status, and last test results.
pingdom.pingdom_create_check Write name, host, type, resolution, url, port, tags, send_string, expect_string, contactids Create a new uptime check in Pingdom. Supports HTTP, HTTPS, TCP, ping, DNS, UDP, SMTP, POP3, and IMAP check types.
pingdom.pingdom_list_results Read check_id, from, to, limit, offset List summary results for a Pingdom uptime check. Returns response times and status summaries.
pingdom.pingdom_get_results Read check_id, from, to, limit, offset, probes, status Get detailed test results for a Pingdom uptime check, including individual probe responses and response times.
pingdom.pingdom_list_alerts Read limit, offset, check_id, status List alerts for the Pingdom account. Returns alert details including check ID, contact, and alert type.
pingdom.pingdom_get_current_user Read none Get details of the currently authenticated Pingdom user, including account info and credits.

Automation Notes

Related Pingdom CLI Pages