Using the elasticsearch backend class, you can query any metrics available in Elasticsearch to create an SLO.
backends:
elasticsearch:
url: ${ELASTICSEARCH_URL}Note that url can be either a single string (when connecting to a single node) or a list of strings (when connecting to multiple nodes):
backends:
elasticsearch:
url: https://localhost:9200backends:
elasticsearch:
url:
- https://localhost:9200
- https://localhost:9201The following methods are available to compute SLOs with the elasticsearch backend:
good_bad_ratiofor computing good / bad metrics ratios.
The good_bad_ratio method is used to compute the ratio between two metrics:
- Good events, i.e events we consider as 'good' from the user perspective.
- Bad or valid events, i.e events we consider either as 'bad' from the user perspective, or all events we consider as 'valid' for the computation of the SLO.
This method is often used for availability SLOs, but can be used for other purposes as well (see examples).
Config example:
backend:
class: Elasticsearch
url: http://localhost:9200
method: good_bad_ratio
measurement:
index: test_data
date_field: last_updated
query_good: {}
query_bad:
must:
term:
name: JAgOZE8Optional fields:
date_field: Alternative field to filter time on. Has to be an ELKdatefield. Defaults to@timestampwhich is the Logstash-generated one.
You can also use the filter_bad field which identifies bad events instead of the filter_valid field which identifies all valid events.
The Lucene query entered in either the query_good, query_bad or query_valid fields will be combined (using the bool operator) into a larger query that filters results on the window specified in your Error Budget Policy steps.
You can specify a different field to filter error budget policy windows on, using the date_field field.
The full ElasticSearch query body for the query_bad above will therefore look like:
{
"query": {
"bool": {
"must": {
"term": {
"name": "JAgOZE8"
}
},
"filter": {
"range": {
"@timestamp": {
"gte": "now-<window>s/s",
"lt": "now/s"
}
}
}
}
},
"track_total_hits": true
}Complete SLO samples using the elasticsearch backend are available in samples/elasticsearch. Check them out!