Skip to main content

Chaos Toolkit controls lib to trace events

Project description

# Chaostoolkit storeevent Control

This control allows you to store events on a configurable data store.
The data store can then be used to monitor events on a monitoring dashboard
or to collect events on monitoring systems like Prometheus.
The control currently implements the following drivers:

* an influx driver to store events on a InfluxDB time series database
* a grafana driver to store events on a Grafana server as annotations

To understand what a chaos-toolkit control is please refer to the official
documentation on [controls](https://docs.chaostoolkit.org/reference/api/experiment/#controls).

## The Influx driver

InfluxDB is one of the most used time series data stores, it's implemented in
golang and therefore is pretty fast and very easy to install and set up.
Moreover, if you use Gatling for your performance input load simulations, it is
pretty simple to store Gatling metrics on InfluxDB as well (as the Influx server can be
configured to accept data in the graphite protocol), so you can use the
same Influx data store for Gatling metrics and chaos toolkit events.

You can configure the Influx driver setting these parameters in the
configuration section (the values provided represent the defaults):

```
"configuration": {
"influx_host": "localhost"
"influx_port": 8086
"influx_http_endpoint": "/write"
"influx_database": "gatlingdb"
}
```

Then, at the proper level, configure the control driver:

```
"controls": [
{
"name": "tracing",
"provider": {
"type": "python",
"module": "chaosdb.influx"
}
}
],
```

## The Grafana driver

The Grafana driver can be quite convenient if you use grafana for your
dashboards. The driver sends chaos-toolkit events directly to Grafana using
the Annotation HTTP API.
Moreover it is able to draw a region annotation around the whole experiment,
making experiment visualization more visible.

The grafana driver accepts the following configuration parameters (defaults
provided):


```
"configuration": {
"grafana_host": "localhost"
"grafana_port": 3000
"grafana_annotation_api_endpoint": "/api/annotations"
"grafana_user": "admin"
"grafana_pass": "admin"
}
```

Refer to the official Grafana documentation for details on how to set up data
stores for InfluxDB databases. For the Grafana driver just use the default
grafana data store when configuring the annotations for your dashboard.


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

chaosdb-0.0.7.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distributions

chaosdb-0.0.7-py3.6.egg (12.4 kB view hashes)

Uploaded Source

chaosdb-0.0.7-py3-none-any.whl (11.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page