Add option es.indices_settings (#18909)

Signed-off-by: Aurélien Rouëné <aurelien.github.arouene@rouene.fr>
This commit is contained in:
Aurélien Rouëné
2019-11-15 05:19:41 -08:00
committed by Kubernetes Prow Robot
parent 902afc2385
commit ebcfe54386
4 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Elasticsearch stats exporter for Prometheus
name: elasticsearch-exporter
version: 2.1.0
version: 2.1.1
kubeVersion: ">=1.10.0-0"
appVersion: 1.1.0
home: https://github.com/justwatchcom/elasticsearch_exporter
+1
View File
@@ -77,6 +77,7 @@ Parameter | Description | Default
`es.uri` | address of the Elasticsearch node to connect to | `localhost:9200`
`es.all` | if `true`, query stats for all nodes in the cluster, rather than just the node we connect to | `true`
`es.indices` | if true, query stats for all indices in the cluster | `true`
`es.indices_settings` | if true, query settings stats for all indices in the cluster | `true`
`es.shards` | if true, query stats for shards in the cluster | `true`
`es.cluster_settings` | if true, query stats for cluster settings | `true`
`es.snapshots` | if true, query stats for snapshots in the cluster | `true`
@@ -65,6 +65,9 @@ spec:
{{- if .Values.es.indices }}
"--es.indices",
{{- end }}
{{- if .Values.es.indices_settings }}
"--es.indices_settings",
{{- end }}
{{- if .Values.es.shards }}
"--es.shards",
{{- end }}
@@ -77,6 +77,10 @@ es:
##
indices: true
## If true, query settings stats for all indices in the cluster.
##
indices_settings: true
## If true, query stats for shards in the cluster.
##
shards: true