Utility/library for checking connectivity between services
Project description
conn-check allows for checking connectivity with external services.
You can write a config file that defines services that you need to have access to, and conn-check will check connectivity with each.
It supports various types of services, all of which allow for basic network checks, but some allow for confirming credentials work also.
Configuration
The configuration is done via a yaml file. The file defines a list of checks to do:
- type: tcp host: localhost port: 80 - type: ssl host: localhost port: 443 verify: true
Each check defines a type, and then options as appropriate for that type.
Check Types
tcp
A simple tcp connectivity check.
- host
The host.
- port
The port.
ssl
A check that uses SSL.
- host
The host.
- port
The port.
- verify
Optional flag whether to also verify the SSL certificate. Default: true.
udp
Check that sending a specific UDP packet gets a specific response.
- host
The host.
- port
The port.
- send
The string to send.
- expect
The string to expect in the response.
http
Check that a HTTP/HTTPS request succeeds.
- url
The URL to fetch.
- method
Optional HTTP method to use. Default: “GET”.
- expected_code
Optional status code that defines success. Default: 200.
- proxy_host
Optional HTTP proxy to connect via.
- proxy_port
Optional port to use with proxy_host. Default: 8000.
- headers:
Optional headers to send, as a dict of key-values. Multiple values can be given as a list under the same key.
- body:
Optional raw request body string to send.
amqp
Check that an AMQP server can be authenticated against.
- host
The host.
- port
The port.
- username
The username to authenticate with.
- password
The password to authenticate with.
- use_ssl
Optional flag whether to connect with ssl. Default: true.
- vhost
Optional vhost name to connect to. Default ‘/’.
postgres
Check that a postgres db can be authenticated against.
- host
The host.
- port
The port.
- username
The username to authenticate with.
- password
The password to authenticate with.
- database
The database to connect to.
redis
Check that a redis server is present, optionally checking authentication.
- host
The host.
- port
The port.
- password
Optional password to authenticatie with.
memcached
Check that a memcached server is present (memcache also works).
- host
The host.
- port
The port.
Building wheels
To allow for easier/more portable distribution of this tool you can build conn-check and all it’s dependencies as Python wheels:
make clean-wheels make build-wheels make build-wheels-extra EXTRA=amqp make build-wheels-extra EXTRA=redis
The build-wheels make target will build conn-check and it’s base dependencies, but to include the optional extra dependencies for other checks such as amqp, redis or postgres you need to use the build-wheels-extra target with the EXTRA env value.
By default all the wheels will be placed in ./wheels.
Automatically generating conn-check YAML configurations
The conn-check-configs package contains utilities/libraries for generating checks from existing application configurations and environments, e.g. from Django settings modules and Juju environments.
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
Built Distribution
File details
Details for the file conn-check-1.0.7.tar.gz
.
File metadata
- Download URL: conn-check-1.0.7.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e373bc750a5730ff7ae2a2b0476d7df364085b1ef81872b19050d8605dc3287a |
|
MD5 | 9f36b3bc799d2ba0d545666166a3c0f4 |
|
BLAKE2b-256 | fd0260eebe20ff7bf2126f61de40f0d158eacd040cac4c18e961a41b0f55c10e |
File details
Details for the file conn_check-1.0.7-py2-none-any.whl
.
File metadata
- Download URL: conn_check-1.0.7-py2-none-any.whl
- Upload date:
- Size: 41.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 184e955ccaa30601fe136d18fbe645395fd7d4370e8d320c739f3930ad4e3214 |
|
MD5 | ccf4f5a144911ec5ecdfdceccc4e8de2 |
|
BLAKE2b-256 | 1759e0d217eea1259fdcc512814be94eca5c5f3c2d3ec27cd278ae399717880c |