如何使用Pingdom API从bash暂停和恢复检查?

时间:2015-06-11 14:39:24

标签: pingdom

我正在编写一个快速而肮脏的部署脚本,并希望禁用并重新启用Pingdom检查作为其中的一部分。我如何使用像cURL这样的东西?

1 个答案:

答案 0 :(得分:4)

暂停支票:

 curl -X PUT -u 'your@email:yourpassword' -H 'Content-Type: application/json' -H 'App-Key: yourapplicationkey' -d 'paused=true' https://api.pingdom.com/api/2.0/checks/checkid

要恢复检查:

 curl -X PUT -u 'your@email:yourpassword' -H 'Content-Type: application/json' -H 'App-Key: yourapplicationkey' -d 'paused=false' https://api.pingdom.com/api/2.0/checks/checkid
  • 用您的pingdom电子邮件替换您的@电子邮件。
  • 用您的pingdom密码替换您的密码。
  • 使用帐户中“共享”部分生成的密钥替换yourapplicationkey。
  • 当您在Pingdom UI中单击支票时,将checkid替换为您在浏览器URL中看到的数字ID。