turbot/uptimerobot

GitHub
steampipe plugin install uptimerobotsteampipe plugin install uptimerobot

UptimeRobot + Steampipe

UptimeRobot is a free tool used to monitor websites.

Steampipe is an open source CLI to instantly query cloud APIs using SQL.

Get UptimeRobot account details:

select
email,
monitor_limit,
monitor_interval,
up_monitors
from
uptimerobot_account;
+---------------------+---------------+------------------+-------------+
| email | monitor_limit | monitor_interval | up_monitors |
+---------------------+---------------+------------------+-------------+
| niharika@turbot.com | 50 | 5 | 3 |
+---------------------+---------------+------------------+-------------+

Documentation

Get started

Install

Download and install the latest UptimeRobot plugin:

steampipe plugin install uptimerobot

Configuration

Installing the latest uptimerobot plugin will create a config file (~/.steampipe/config/uptimerobot.spc) with a single connection named uptimerobot:

connection "uptimerobot" {
plugin = "uptimerobot"
# API key for your UptimeRobot account.
# We recommend creating a read-only api_key, for more information on the
# different types, please see https://uptimerobot.com/api/.
# Can also be set with the UPTIMEROBOT_API_KEY environment variable.
# api_key = "u1857235-592bd3c445thisisafakekey"
}
  • api_key - UptimeRobot API key. Can also be set with the UPTIMEROBOT_API_KEY environment variable.

Get involved