Decorator that pings URLs before and after executing the wrapped obj.
Project description
babis
Decorator that pings URLs before and after executing the wrapped obj. Useful to monitor cron jobs with services like Dead Man’s Snitch or HealthChecks.io.
Features
Pre and After run pings
Custom user agent
Silent failures
Rate limiting
Usage
Ping after successful execution:
@babis.decorator(ping_after='http://healthchecks.io/XXX') def cron_job(): pass
Some services support pre and after hooks to measure the running time:
@babis.decorator(ping_before='http://healthchecks.io/XXX', ping_after='http://healthchecks.io/XXX') def measured_cron_job(): pass
You can also send a POST instead of the default GET:
@babis.decorator(ping_before='http://healthchecks.io/XXX', method='post') def cron_job_with_post(): pass
And if you don’t care if the ping fails, silence the errors:
@babis.decorator(ping_before='http://healthchecks.io/XXX', silent_failures=True) def cron_job_silent_failure(): pass
You can also rate limit the number of pings send to play nice with third party services, let’s say to at most 1 call in 5 minutes:
@babis.decorator(ping_after='http://healthchecks.io/XXX', rate='1/5m') def cron_job_rate_limited(): pass
or at most 24 calls per day:
@babis.decorator(ping_after='http://healthchecks.io/XXX', rate='24/1d') def cron_job_rate_limited(): pass
Note that if you defined both ping_after and ping_before URLs then each call counts for two hits by the rate limiter.
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.2.0 (2017-05-24)
Add rate limiting.
0.1.0 (2016-08-23)
First release on PyPI.
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
Built Distribution
File details
Details for the file babis-0.2.4.tar.gz
.
File metadata
- Download URL: babis-0.2.4.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c33bc3c754a0bacfe09179b5c4d1a2a3b5c6ddd453cd1050251fcbf9c0bd1473 |
|
MD5 | 230494907d79c0c9370ed156b5d0d33a |
|
BLAKE2b-256 | adac511a1f808269768f127b1fc820470c2986802d55b7f7295eb1cc6fe9020a |
File details
Details for the file babis-0.2.4-py2.py3-none-any.whl
.
File metadata
- Download URL: babis-0.2.4-py2.py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a901e8c27a47dfe22077f60c3f2daf324909a9f3f9838ecfa4100af346703fff |
|
MD5 | 7fe5d0b81475143c41c3a2f050eee059 |
|
BLAKE2b-256 | c6cb06d88b72551df352f17261b6be5843bd5e4dcf0dc9a53637429ce8b22e7a |