A tool to probe and check the health of services
Project description
check-service a tool to probe and check the health of network services
chksrv is a tool intended to be used in conjunction with other tools (e.g. Minitor) to check the health and availability of network services. One design goal was to provide flexibility of what is checked, without the need for complex bash scripts and piping. Effectively allowing to write one check and then validating mulitple measurements afterwards.
Installation
pip install chksrv
You need at least Python 3.7 to run chksrv.
Usage
Usage:
chksrv (-h | --help)
chksrv --version
chksrv tcp [options] [-p PARAM=VALUE]... [-e EXPR]... HOST PORT
chksrv ssl [options] [-p PARAM=VALUE]... [-e EXPR]... HOST PORT
chksrv http [options] [-p PARAM=VALUE]... [-e EXPR]... URL
Options:
-h --help Show this screen.
--version Show version.
-v --verbose Increases verbosity.
-l --log-level LEVEL Defines the log verbosity [default: WARN].
--log-file FILE Stores all log output in a file.
-p --parameter PARAM=VALUE Defines a parameter.
-e --expects EXPR Defines an expection expression.
-r --retry RETRY Defines the amount of retries [default: 3].
--timeout TIMEOUT Defines a timeout for one try in seconds [default: 10].
Modules
TCP
The TCP is one of the most basic check modules. Its purpose is to try to establish a connection to a standard TCP listening socket.
Parameters
- ipv6:
Specifies the IPv6 behaviour. Possible values:
Trueonly tries to connect to IPv6Falseonly tries to connect to IPv4'prefer'tries to connect using IPv6 first, and tries IPv4 if this fails (default)'fallback'tries to connect using IPv4 first, and falls back to IPv6 if this fails
- timeout:
Specifies the socket timeout in seconds
Results
- tcp.success:
Trueif the socket connect succeded- tcp.con.time.perf:
Fractions of seconds it took to establish the socket connection
- tcp.con.time.process:
Fractions of seconds of CPU time (system and user) the process used to establish the socket connection
- tcp.ipv6:
Trueif the socket was established using IPv6
SSL
The SSL module is based on the TCP module <module-tcp> and layers
a SSL/TLS handshake on top of it, using the Python3 ssl library.
All parameters and results from the TCP module are available in addition
Parameters
- ssl.use_default_context:
If set to
Truethe SSL context is created using systems defaults.ssl.protocolandssl.cipherswill be ignored. (default:'prefer')- ssl.check_hostname:
If set to
Truechksrv verifies if the SSL certificate commonName matches the connected hostname. (default:False)- ssl.protocol:
SSL protocol to use. Possible values:
tls(default)sslv2sslv3tlsv1tlsv1.1tlsv1.2
- ssl.ciphers:
The cipher suite to use. Must be a valid OpenSSL cipher suite string. (default:
ALL)- ssl.verify_mode:
SSL verify mode. cf. ssl.VerifyMode (default:
CERT_OPTIONAL)- ssl.verify_flags:
SSL verify flags. cf. ssl.VerifyFlags (default:
VERIFY_DEFAULT)- ssl.ca:
Directory or file containing x509 certifcates of trusted Certificate Authorities. By setting it to
__sys__chksr tries to load the system default trusted certificates.
Results
- ssl.success:
Trueif the SSL handshake was successful- ssl.con.cert:
Parsed x509 certificate the server used to authenticate itself
- ssl.con.cipher:
Negotiated cipher used to this connection
- ssl.con.compression:
Compression algorithm for this connection or
None- ssl.con.alpn_protocol:
ALPN protocol selected during the TLS handshake or
None- ssl.con.npn_protocol:
NPN protocol selected during the SSL/TLS handshake or
None- ssl.con.ssl_version:
Actual SSL protocol version negotiated for this connection or
Noneif no secure connection was established- ssl.con.server_hostname:
Hostname of the server
- ssl.con.cert.matches_hostname:
Trueif the server hostname matches the certificate commonName
HTTP
The HTTP module is intended to be used to check web services,
and relies on either the TCP or SSL module to establish
the underlying socket connection. Depending if the URL is
specified with http:// or https://.
Consequently all parameters from either only the TCP module or both the TCP and SSL module are available in addition
Parameters
- http.method:
HTTP method of the request. Possible values:
GET(default)HEADPOSTPUTDELETEOPTIONSPATCHTRACE
- http.body:
Body to attach to the request. (default:
None)
Results
- http.success:
Trueif the HTTP request was successful. (Does not evaluate the returned status code)- http.resp.status:
HTTP response status code (numeric)
- http.resp.reason:
HTTP response reason (e.g.
Found)- http.resp.version:
HTTP version
- http.resp.body:
HTTP response body
- http.resp.body_length:
Actual size of the HTTP response body. (Does not read
Content-Lengthheader)- http.resp.header.*:
Collection of response headers, converted to lower-case snake_case. So the header field
Content-Lengthis available ashttp.resp.header.content_length. If a header field appears multiple times in the response header (e.g.Set-Cookie) the value is provided as list.
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chksrv-0.1.0-py3-none-any.whl.
File metadata
- Download URL: chksrv-0.1.0-py3-none-any.whl
- Upload date:
- Size: 30.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/36.6.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7717cc54a0751eb3cbb5fb985f364ac2e63b69ab9e49d9097ade0b67943c1ad1
|
|
| MD5 |
3c3e5dffeec346596b3b8809a5c39e03
|
|
| BLAKE2b-256 |
6e9ff286cabff1d549b9ec92c11670d7109b0274f0c8afad202c620d78e51a34
|