Skip to main content

Declarative configuration library for Uptime Robot

Project description

https://readthedocs.org/projects/urconf/badge/?version=latest https://travis-ci.org/knyar/urconf.svg?branch=master https://coveralls.io/repos/knyar/urconf/badge.svg?branch=master&service=github

Declarative configuration library for Uptime Robot

urconf is a Python library for Uptime Robot <https://uptimerobot.com/> API. It expects definition of all your contacts and monitors, and then issues API calls required to configure your Uptime Robot accordingly.

Usage

Install urconf using pip: pip install urconf

Write your monitoring configuration as a Python script:

import logging
import urconf

# urconf logs all operations that change configuration at the INFO level.
# Use DEBUG to see API call contents.
logging.basicConfig(level=logging.INFO)

config = urconf.UptimeRobot("api-key")  # dry_run=True enables dry mode

# Define contacts
email = config.email_contact("me@example.com")
boxcar = config.boxcar_contact("boxcar-api-key", "my boxcar")

# Define monitors
ssh = config.port_monitor("ssh on server1", "server1.example.com", 22)
web = config.keyword_monitor(
    "my site", "https://example.com/", "welcome to example.com!")
# More complex example with HTTP auth and non-standard monitoring interval
backend = config.keyword_monitor(
    "my backend", "https://admin.example.com", "Cannot connect to database",
    should_exist=False, http_username="admin", http_password="password",
    interval=20)

# Associate contacts with monitors
for monitor in (ssh, web, backend):
    monitor.add_contacts(email, boxcar)

# Sync configuration to Uptime Robot
config.sync()

Run the script to sync configuration.

Functionality

Currently implemented:

  • SMS, email, Twitter DM, Boxcar, Webhook, Pushbullet and Pushover contacts;

  • keyword and port monitors.

Pull requests extending supported types of contacts or monitors are very welcome.

If you need to use contact types which are not supported by the newAlertContact method of Uptime Robot API (for example, HipChat or Slack), you can create the contact manually in the web UI, define it in your configuration file by calling the UptimeRobot.contact() method directly and then use that contact in add_contacts normally:

config = urconf.UptimeRobot("api-key")
hipchat = config.contact(type=10, value="123", friendly_name="Hipchat")
config.port_monitor("ssh1", "ssh1.example.com", 22).add_contacts(hipchat)

Development notes

  • refer to API documentation <https://uptimerobot.com/api> while implementing additional functionality;

  • run tox to run the tests in Python 2.7 and 3.4 environments;

  • run make html in docs/ to build documentation in HTML. It can be viewed in docs/_build/html/ afterwards.

License

urconf is licensed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

urconf-2021.1.tar.gz (12.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page