Error Counter: Count error (e.g. network error) beyond process boundary, then issue fix command when exceeded threshold.
Project description
error-counter
Error Counter: Count error (e.g. network error) beyond process boundary, then issue fix command when exceeded threshold.
How to use
import requests
from error_counter import Counter
# reboot system when error accumulate 3 times in a low
network_error_counter = Counter("/tmp/network_error.txt")
try:
r = requests.post(somowhere, somewhat)
except requests.ConnectionError as e:
network_error_counter.inc_error()
if not r is None:
# send succeeded.
network_error_counter.reset_error()
Counter class
class Counter:
def __init__(self, counterfile, reset_task="sudo reboot", reset_threshold=3):
# counterfile: file name to use counter. The file is owned jointly by sevelal Counter beyond process boundary.
# reset_task: shell command which is issued when error count is over the threshold.
# reset_threshold: Threshold for reset_task.
def inc_error(self):
# Increment error count then issue reset_task if count is over threshold
def dec_error(self):
# Decrement error count as 0
def reset_error(self):
# Reset error count as 0
downloads
history
- 0.1.0 2018.11.18 first version
- 0.1.1 2018.11.18 fix README
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
error_counter-0.1.1.tar.gz
(2.1 kB
view details)
File details
Details for the file error_counter-0.1.1.tar.gz
.
File metadata
- Download URL: error_counter-0.1.1.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/2.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5da6a15fa7b1827d67b2d66b1f04a09c1467ba13b5444994dfcf57757a386f66 |
|
MD5 | 049a5f452b9d859b853a449b6839e1d6 |
|
BLAKE2b-256 | 0705a4bc3c90a85f38ddf236eb07be465cda718d6e0625715f03742c2a23af30 |