openclaw / pingdom
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/pingdom && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/4316" && unzip -o skill.zip -d .claude/skills/pingdom && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/pingdom/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Monitor uptime and performance via Pingdom API. Manage checks and view reports.
0 views
0 installs
Skill Content
---
name: pingdom
description: Monitor uptime and performance via Pingdom API. Manage checks and view reports.
metadata: {"clawdbot":{"emoji":"📡","requires":{"env":["PINGDOM_API_TOKEN"]}}}
---
# Pingdom
Uptime monitoring.
## Environment
```bash
export PINGDOM_API_TOKEN="xxxxxxxxxx"
```
## List Checks
```bash
curl "https://api.pingdom.com/api/3.1/checks" -H "Authorization: Bearer $PINGDOM_API_TOKEN"
```
## Get Check Results
```bash
curl "https://api.pingdom.com/api/3.1/results/{checkId}" -H "Authorization: Bearer $PINGDOM_API_TOKEN"
```
## Create Check
```bash
curl -X POST "https://api.pingdom.com/api/3.1/checks" \
-H "Authorization: Bearer $PINGDOM_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "My Website", "host": "example.com", "type": "http"}'
```
## Links
- Docs: https://docs.pingdom.com/api/