You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can find a helm chart in the prometheus-community charts repository at https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-elasticsearch-exporter
34
+
You can find a helm chart in the prometheus-community charts repository at <https://github.com/prometheus-community/helm-charts/tree/main/charts/prometheus-elasticsearch-exporter>
**NOTE:** The exporter fetches information from an Elasticsearch cluster on every scrape, therefore having a too short scrape interval can impose load on ES master nodes, particularly if you run with `--es.all` and `--es.indices`. We suggest you measure how long fetching `/_nodes/stats` and `/_all/_stats` takes for your ES cluster to determine whether your scraping interval is too short. As a last resort, you can scrape this exporter using a dedicated job with its own scraping interval.
43
44
44
45
Below is the command line options summary:
46
+
45
47
```bash
46
48
elasticsearch_exporter --help
47
49
```
48
50
49
51
| Argument | Introduced in Version | Description | Default |
| es.uri | 1.0.2 | Address (host and port) of the Elasticsearch node we should connect to. This could be a local node (`localhost:9200`, for instance), or the address of a remote Elasticsearch server. When basic auth is needed, specify as: `<proto>://<user>:<password>@<host>:<port>`. E.G., `http://admin:pass@localhost:9200`. Special characters in the user credentials need to be URL-encoded. |http://localhost:9200|
53
+
| es.uri | 1.0.2 | Address (host and port) of the Elasticsearch node we should connect to. This could be a local node (`localhost:9200`, for instance), or the address of a remote Elasticsearch server. When basic auth is needed, specify as: `<proto>://<user>:<password>@<host>:<port>`. E.G., `http://admin:pass@localhost:9200`. Special characters in the user credentials need to be URL-encoded. |<http://localhost:9200>|
52
54
| es.all | 1.0.2 | If true, query stats for all nodes in the cluster, rather than just the node we connect to. | false |
53
55
| es.cluster_settings | 1.1.0rc1 | If true, query stats for cluster settings. | false |
54
56
| es.indices | 1.0.2 | If true, query stats for all indices in the cluster. | false |
@@ -67,6 +69,7 @@ elasticsearch_exporter --help
67
69
| es.ssl-skip-verify | 1.0.4rc1 | Skip SSL verification when connecting to Elasticsearch. | false |
68
70
| web.listen-address | 1.0.2 | Address to listen on for web interface and telemetry. | :9114 |
69
71
| web.telemetry-path | 1.0.2 | Path under which to expose metrics. | /metrics |
72
+
| aws.region | 1.5.0 | Region for AWS elasticsearch ||
70
73
| version | 1.0.2 | Show version info on stdout and exit. ||
71
74
72
75
Commandline parameters start with a single `-` for versions less than `1.1.0rc1`.
@@ -93,6 +96,7 @@ es.slm | `read_slm`
93
96
es.data_stream | `monitor` or `manage` (per index or `*`) |
94
97
95
98
Further Information
99
+
96
100
-[Build in Users](https://www.elastic.co/guide/en/elastic-stack-overview/7.3/built-in-users.html)
| elasticsearch_data_stream_backing_indices_total | gauge | 1 | Number of backing indices for Data Stream
249
253
| elasticsearch_data_stream_store_size_bytes | gauge | 1 | Current size of data stream backing indices in bytes
250
254
251
-
252
255
### Alerts & Recording Rules
253
256
254
257
We provide examples for [Prometheus](http://prometheus.io)[alerts and recording rules](examples/prometheus/elasticsearch.rules) as well as an [Grafana](http://www.grafana.org)[Dashboard](examples/grafana/dashboard.json) and a [Kubernetes](http://kubernetes.io)[Deployment](examples/kubernetes/deployment.yml).
@@ -281,7 +284,7 @@ who transferred this repository to us in January 2017.
281
284
282
285
Maintainers of this repository:
283
286
284
-
* Christoph Oelmüller <christoph.oelmueller@justwatch.com> @zwopir
287
+
- Christoph Oelmüller <christoph.oelmueller@justwatch.com> @zwopir
285
288
286
289
Please refer to the Git commit log for a complete list of contributors.
0 commit comments