Skip to content

Run Elasticsearh queries and create metrics based on the result of the queries in Elasticsearch database.

Notifications You must be signed in to change notification settings

greenpau/esqrunner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8d7bf49 · Sep 7, 2023

History

18 Commits
Apr 27, 2020
Apr 28, 2020
Apr 30, 2020
Apr 26, 2020
Apr 27, 2020
Apr 30, 2020
Apr 26, 2020
Apr 30, 2020
Apr 28, 2020
Sep 7, 2023
Sep 7, 2023
Apr 30, 2020
Apr 30, 2020
Apr 28, 2020
Apr 30, 2020

Repository files navigation

Elasticsearch Query Runner

Run Elasticsearh queries and create metrics based on the result of the queries in Elasticsearch database.

Getting Started

First, define the metrics to collect from Elasticsearch. Please see assets/metrics/simple.json for an example.

[
  {
    "id": "28e3c0fb594443fea16131c5f26eeb81",
    "category": "Helpdesk",
    "name": "Helpdesk Ticket Total",
    "description": "The total number of helpdesk tickets",
    "operation": "GET",
    "base_index": "tickets-",
    "index_split": "daily",
    "dsl_function": "_count",
    "dsl_query": {
      "query": {
        "bool": {
          "must_not": [
            {
              "match_phrase": {
                "classification": "internal"
              }
            }
          ]
        }
      }
    }
  }
]

Next, create a configuration file pointing to the metrics and identifying Elasticsearch:

---
metric_sources:
  - 'assets/metrics/simple.json'
elasticsearch:
  addr:
    - 'http://localhost:9200'

Finally, run esqrunner tool to create datasets:

./bin/esqrunner --config ~/tmpelastic/config.yaml --log-level debug --datepicker "last 7 days, interval 1 day" --output-file-prefix "metrics_last_7d"

The expected output follows:

Output file prefix: /tmp/esqrunner-703462495/metrics_last_7d
Wrote data to /tmp/esqrunner-703462495/metrics_last_7d_landscape.csv
Wrote data to /tmp/esqrunner-703462495/metrics_last_7d_portrait.csv
Wrote data to /tmp/esqrunner-703462495/metrics_last_7d.json
Wrote data to /tmp/esqrunner-703462495/metrics_last_7d.js

About

Run Elasticsearh queries and create metrics based on the result of the queries in Elasticsearch database.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published