Elasticsearch exporter Build Status

Crates.io Documentation BSD-3 licensed

Prometheus Elasticsearch exporter capable of working with large clusters. Caution you may overload Prometheus server by enabling all metrics, exporter is capable to export over near 1 million metrics. To avoid overloading Prometheus server run multiple Elasticsearch exporters that target just few specific metrics.

bash $ curl -s http://127.0.0.1:9222/metrics | wc 940272 1887011 153668390

Try it out with docker

bash $ docker run --network=host -it ernestasvinted/elasticsearch_exporter --elasticsearch_url=http://IP:PORT

Features

Options

```shell $ curl -s http://127.0.0.1:9222 Vinted Elasticsearch exporter

Available /cat subsystems: - catallocation - catshards - catindices - catsegments - catnodes - catrecovery - cathealth - catpendingtasks - cataliases - catthreadpool - catplugins - catfielddata - catnodeattrs - catrepositories - cattemplates - cattransforms Available /cluster subsystems: - clusterhealth Available /nodes subsystems: - nodesusage - nodesstats - nodes_info

Exporter settings: elasticsearchurl: http://127.0.0.1:9200 elasticsearchglobaltimeout: 30s elasticsearchnodesstatsfields: breaker,discovery,fs,http,indexingpressure,indices,ingest,jvm,os,process,threadpool,transport elasticsearchsubsystemtimeouts: - nodestats: 15s elasticsearchpathparameters: - nodesinfo: http,ingest,jvm,threadpool - nodesstats: breaker,indexingpressure,indices,jvm,os,process,transport,threadpool exporterskiplabels: - catallocation: health,status - catfielddata: id - catindices: health,status - catnodeattrs: id - catnodes: health,status,pid - catplugins: id,description - catsegments: health,status,checkpoint,prirep - catshards: health,status,checkpoint,prirep - cattemplates: composedof - catthreadpool: nodeid,ephemeralnodeid,pid - cattransforms: health,status - clusterstats: segment,patterns exporterincludelabels: - cataliases: index,alias - catallocation: node - catfielddata: node,field - cathealth: shards - catindices: index - catnodeattrs: node,attr - catnodes: index,name,noderole - catpendingtasks: index - catplugins: name - catrecovery: index,shard,stage,type - catrepositories: index - catsegments: index,shard - catshards: index,node,shard - cattemplates: name,indexpatterns - catthreadpool: nodename,name,type - cattransforms: index - clusterhealth: status - nodesinfo: name - nodesstats: name,vinclusterversion - nodesusage: name exporterskipmetrics: - cataliases: filter,routingindex,routingsearch,iswriteindex - catnodeattrs: pid - catrecovery: starttime,starttimemillis,stoptime,stoptimemillis - cattemplates: order - nodesusage: _nodestotal,nodessuccessful,since exporterpolldefaultinterval: 5s exporterpollintervals: - clusterhealth: 5s exporterhistogrambuckets: [0.02, 0.04, 0.06, 0.08, 0.1, 0.25, 0.5, 0.75, 1.0, 2.0, 4.0, 6.0, 8.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0] in seconds exporterskipzerometrics: true exportermetricsenabled: - cathealth: true - catindices: true - nodesinfo: true - nodesstats: true exportermetadatarefreshinterval: 300s ```

Self exporter metrics

```

HELP elasticsearchsubsystemrequestdurationseconds The Elasticsearch subsystem request latencies in seconds.

TYPE elasticsearchsubsystemrequestdurationseconds histogram

elasticsearchsubsystemrequestdurationsecondsbucket{cluster="devnull",subsystem="/nodes/os",le="0.005"} 0 elasticsearchsubsystemrequestdurationsecondssum{cluster="devnull",subsystem="/nodesstats"} 0.130069193 elasticsearchsubsystemrequestdurationsecondscount{cluster="devnull",subsystem="/nodesstats"} 1

HELP httprequestduration_seconds The HTTP request latencies in seconds.

TYPE httprequestduration_seconds histogram

httprequestdurationsecondsbucket{handler="/metrics",le="0.005"} 1 httprequestdurationsecondssum{handler="/metrics"} 0.004372555 httprequestdurationsecondscount{handler="/metrics"} 1

HELP processcpuseconds_total Total user and system CPU time spent in seconds.

TYPE processcpuseconds_total counter

processcpuseconds_total 0.24

HELP processmaxfds Maximum number of open file descriptors.

TYPE processmaxfds gauge

processmaxfds 1024

HELP processopenfds Number of open file descriptors.

TYPE processopenfds gauge

processopenfds 16

HELP processresidentmemory_bytes Resident memory size in bytes.

TYPE processresidentmemory_bytes gauge

processresidentmemory_bytes 25006080

HELP processstarttime_seconds Start time of the process since unix epoch in seconds.

TYPE processstarttime_seconds gauge

processstarttime_seconds 1605894185.46

HELP processvirtualmemory_bytes Virtual memory size in bytes.

TYPE processvirtualmemory_bytes gauge

processvirtualmemory_bytes 1345773568 ```

Debug

Levels: info,warn,error,debug,trace

To debug HTTP requests

export RUST_LOG=info,reqwest=debug

To trace everything

export RUST_LOG=trace

Development

To start:

shell cargo run --bin elasticsearch_exporter

To test:

shell cargo test

License

BSD-3-Clause