mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Add option es.indices_settings (#18909)
Signed-off-by: Aurélien Rouëné <aurelien.github.arouene@rouene.fr>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
902afc2385
commit
ebcfe54386
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user