Dynatrace extension for the Chaos Toolkit
Project description
Chaos Toolkit extension for Dynatrace
Dynatrace support for the Chaos Toolkit.
Install
To be used from your experiment, this package must be installed in the Python environment where chaostoolkit already lives.
$ pip install chaostoolkit-dynatrace
Usage
To use this package, you must have access to a Dynatrace instance via DynatraceApi and be allowed to connect to it.
the access credentials to the api must be specified in the configuration section
{
"configuration": {
"dynatrace_base_url": "https://{your-environment-id}.live.dynatrace.com"
},
"secrets": {
"dynatrace": {
"token": "..."
}
}
}
Here is an example of how to get the failure rate of a service in Dynatrace. for this example, the api for validate de failure rate is Metric-v1
{
"type": "probe",
"name": "get-failure-rate-services",
"provider": {
"type": "python",
"module": "chaosdynatrace.timeseries.v1.probes",
"func": "failure_rate",
"secrets": ["dynatrace"],
"arguments": {
"entity": "SERVICE-665B05BC92550119",
"relative_time": "30mins",
"failed_percentage": 1
}
}
}
The probe returns true
if the api request failure percentage is less than
the failed_percentage
value or return false
.
The extension also exports a control to send events to Dynatrace. For instance:
{
"controls": [
{
"name": "dynatrace",
"provider": {
"type": "python",
"secrets": ["dynatrace"],
"module": "chaosdynatrace.events.v2.control"
}
}
]
}
This will send start/stop logs of the experiment events.
You can correlate them to traces using the Open Telemetry extension.
{
"configuration": {
"dynatrace_base_url": "https://{your-environment-id}.live.dynatrace.com",
"tracing_provider": "opentelemetry",
"tracing_opentelemetry_exporter": "oltp-http",
"tracing_opentelemetry_collector_endpoint": "https://{your-environment-id}.live.dynatrace.com/api/v2/otlp/v1/traces",
"tracing_opentelemetry_collector_headers": {
"Authorization": "Api-Token <TOKEN>"
}
},
"controls": [
{
"name": "opentracing",
"provider": {
"type": "python",
"module": "chaostracing.control"
}
}
]
The logs and traces will be automatically correlated.
Contribute
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.
Develop
If you wish to develop on this project, make sure to install the development dependencies. But first, create a virtual environment and then install those dependencies.
$ pip install -r requirements-dev.txt -r requirements.txt
Then, point your environment to this directory:
$ pip install -e .
Now, you can edit the files and they will be automatically be seen by your
environment, even when running from the chaos
command locally.
Test
To run the tests for the project execute the following:
$ pytest
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 chaostoolkit-dynatrace-0.2.0.tar.gz
.
File metadata
- Download URL: chaostoolkit-dynatrace-0.2.0.tar.gz
- Upload date:
- Size: 17.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e3388a4df15c7cd0bd18d29e2e2811412fc2e987ab3206ae1e754a71c5585c0 |
|
MD5 | 07551d667e866510ba84cd9bd8e42c21 |
|
BLAKE2b-256 | 62e3e06c14202629c11eb0004cc2593998d37b3fcf77ef6f1178076f84abaa9d |
File details
Details for the file chaostoolkit_dynatrace-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: chaostoolkit_dynatrace-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f8462c3e798b1fa8079bb502779d2bb27e0ed6086c80d9e12bc2331cdb73bf2 |
|
MD5 | 32077c33c5a0b6d7e5991f4556973a40 |
|
BLAKE2b-256 | 4ab472945851faa96f8df3f9f8fa336448b060e021f66c5264b6974495572cab |