Prometheus Extension for the Chaos Toolkit
Prometheus support for the Chaos Toolkit.
To be used from your experiment, this package must be installed in the Python
environment where chaostoolkit already lives.
$ pip install chaostoolkit-prometheus
To use this package, you must create have access to a Prometheus instance via
HTTP and be allowed to connect to it.
By default, the Prometheus instance at http://localhost:9090
will be queried.
To override, you need to set up the instance details using the prometheus_base_url
configuration property:
"configuration": {
"prometheus_base_url": "http://my.prometheus.server/"
}
This package only exports probes to query for some aspects of your system as
monitored by Prometheus.
Here is an example of querying Prometheus at a given moment
{
"type": "probe",
"name": "fetch-cpu-just-2mn-ago",
"provider": {
"type": "python",
"module": "chaosprometheus.probes",
"func": "query",
"arguments": {
"query": "process_cpu_seconds_total{job='websvc'}",
"when": "2 minutes ago"
}
}
}
You can also ask for an interval as follows:
{
"type": "probe",
"name": "fetch-cpu-over-interval",
"provider": {
"type": "python",
"module": "chaosprometheus.probes",
"func": "query_interval",
"arguments": {
"query": "process_cpu_seconds_total{job='websvc'}",
"start": "2 minutes ago",
"end": "now",
"step": 5
}
}
}
In both cases, the probe returns the JSON payload as-is from Prometheus
or raises an exception when an error is met.
The result is not further process and should be found in the generated report
of the experiment run.
You can also send metrics to a pushgateway service via a control:
{
"controls": [
{
"name": "prometheus",
"provider": {
"type": "python",
"module": "chaosprometheus.metrics",
"arguments": {
"pushgateway_url": "http://someip:9091",
"job": "chaostoolkit"
}
}
}
]
}
You can also set three more arguments:
grouping_key
: A mapping of strings to uniquely aggregate multiple runstrace_id
: This must be a string which will identify this run uniquely inexperiment_ref
: Sometimes it’s useful to identify a particular experiment,These are particularly useful when you couple this extension with others like
Loki where you want to cross-reference between logs and metrics.
If you wish to contribute more functions to this package, you are more than
welcome to do so. Please, fork this project, make your changes following the
usual PEP 8 code style, sprinkling with tests and submit a PR for
review.