@@ -48,6 +48,7 @@ elasticsearch_exporter --help
48
48
| es.cluster_settings | 1.1.0rc1 | If true, query stats for cluster settings. | false |
49
49
| es.indices | 1.0.2 | If true, query stats for all indices in the cluster. | false |
50
50
| es.indices_settings | 1.0.4rc1 | If true, query settings stats for all indices in the cluster. | false |
51
+ | es.indices_mappings | 1.2.0 | If true, query stats for mappings of all indices of the cluster. | false |
51
52
| es.shards | 1.0.3rc1 | If true, query stats for all indices in the cluster, including shard-level stats (implies `es.indices=true`). | false |
52
53
| es.snapshots | 1.0.4rc1 | If true, query stats for the cluster snapshots. | false |
53
54
| es.timeout | 1.0.2 | Timeout for trying to get stats from Elasticsearch. (ex : 20s) | 5s |
@@ -56,6 +57,7 @@ elasticsearch_exporter --help
56
57
| es.client-cert | 1.0.2 | Path to PEM file that contains the corresponding cert for the private key to connect to Elasticsearch. | |
57
58
| es.clusterinfo.interval | 1.1.0rc1 | Cluster info update interval for the cluster label | 5m |
58
59
| es.ssl-skip-verify | 1.0.4rc1 | Skip SSL verification when connecting to Elasticsearch. | false |
60
+ | es.apiKey | unreleased | API Key to use for authenticating against Elasticsearch. | |
59
61
| web.listen-address | 1.0.2 | Address to listen on for web interface and telemetry. | :9114 |
60
62
| web.telemetry-path | 1.0.2 | Path under which to expose metrics. | /metrics |
61
63
| version | 1.0.2 | Show version info on stdout and exit. | |
@@ -66,6 +68,9 @@ by replacing `.` and `-` with `_` and upper-casing the parameter name.
66
68
67
69
# ### Elasticsearch 7.x security privileges
68
70
71
+ Username and password can be passed either directly in the URI or through the `ES_USERNAME` and `ES_PASSWORD` environment variables.
72
+ Specifying those two environment variables will override authentication passed in the URI (if any).
73
+
69
74
ES 7.x supports RBACs. The following security privileges are required for the elasticsearch_exporter.
70
75
71
76
Setting | Privilege Required | Description
@@ -111,6 +116,7 @@ Further Information
111
116
| elasticsearch_filesystem_io_stats_device_write_operations_count | gauge | 1 | Count of disk write operations
112
117
| elasticsearch_filesystem_io_stats_device_read_size_kilobytes_sum | gauge | 1 | Total kilobytes read from disk
113
118
| elasticsearch_filesystem_io_stats_device_write_size_kilobytes_sum | gauge | 1 | Total kilobytes written to disk
119
+ | elasticsearch_indices_active_queries | gauge | 1 | The number of currently active queries
114
120
| elasticsearch_indices_docs | gauge | 1 | Count of documents on this node
115
121
| elasticsearch_indices_docs_deleted | gauge | 1 | Count of deleted documents on this node
116
122
| elasticsearch_indices_docs_primary | gauge | | Count of documents with only primary shards on all nodes
@@ -128,6 +134,7 @@ Further Information
128
134
| elasticsearch_indices_get_total | counter | 1 | Total get
129
135
| elasticsearch_indices_indexing_delete_time_seconds_total | counter | 1 | Total time indexing delete in seconds
130
136
| elasticsearch_indices_indexing_delete_total | counter | 1 | Total indexing deletes
137
+ | elasticsearch_indices_index_current | gauge | 1 | The number of documents currently being indexed to an index
131
138
| elasticsearch_indices_indexing_index_time_seconds_total | counter | 1 | Cumulative index time in seconds
132
139
| elasticsearch_indices_indexing_index_total | counter | 1 | Total index calls
133
140
| elasticsearch_indices_mappings_stats_fields | gauge | 1 | Count of fields currently mapped by index
0 commit comments