A documented python library to consume the full pingdom API
Project description
Written by: Kenneth Wilke <kenneth.wilke@gmail.com>
This is a python library to provide full access to the pingdom API, along with a few additional features to make using the API easier and pythonic.
Usage examples
Connecting to pingdom
import pingdomlib
api = pingdomlib.Pingdom(username, password, apikey)
Show all checks that are not in ‘UP’ status
# See pingdomlib.pingdom documentation to see available calls and settings
pingdomchecks = api.getChecks()
for check in pingdomchecks:
# See pingdomlib.check documentation for information on PingdomCheck class
if check.status != 'up':
print check
Creating a new check
newcheck = api.newCheck("New check name", "www.hostnametocheck.com")
Updating a check
# Updates to check objects are pushed immediately to pingdom
newcheck.paused = True
Disabling change pushing for checks
api.pushChanges = False
Get last 10 pingdom alerts sent
import datetime
for alert in api.alerts(limit=10):
time = datetime.datetime.fromtimestamp(alert['time'])
timestamp = time.strftime('%Y-%m-%d %H:%M:%S')
print "[%s] %s is %s" % (time, alert['name'], alert['status'])
Get outages for a specific check
import datetime
check = api.getCheck(227878)
for outage in check.outages():
# timestamp conversion
time_start = datetime.datetime.fromtimestamp(outage['timefrom'])
timestamp_start = time_start.strftime('%Y-%m-%d %H:%M:%S')
time_end = datetime.datetime.fromtimestamp(outage['timeto'])
timestamp_end = time_end.strftime('%Y-%m-%d %H:%M:%S')
print "%s: %s from %s to %s [%dm]" % (check.name, outage['status'],
timestamp_start, timestamp_end,
(outage['timeto'] -
outage['timefrom']) / 60)
Contributors
Wil Clouser
Ash Berlin
Wu Jiang
Gertjan Oude Lohuis
Benjamin Boudreau
Britt Gresham
Allard Hoeve
Willem de Groot
Aaron Fay
Rick van de Loo
Oleksandr Kushchenko
Steven Bailey
Special thanks
Anders Ekman, Pingdom, for offering warm and helpful support with the API
TODO list
Planned improvements
Optional Gzip Compression
Improve check update process with pushChanges disabled
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PingdomLib-2.0.3.tar.gz
.
File metadata
- Download URL: PingdomLib-2.0.3.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 233648db2d0a339f505959cfd56cef973d1d882af0e127166ca90382c56f590f |
|
MD5 | 3b925673e1394a2e17ef2c88d53f330f |
|
BLAKE2b-256 | 13039bd6855caa9c131a26b86617befbab56a31f1d54eccc1234eab21996735a |