[stable/elastic-exporter] Fix wrong default value (#13996)

Signed-off-by: ialidzhikov <i.alidjikov@gmail.com>
This commit is contained in:
Ismail Alidzhikov
2019-06-20 02:52:50 -07:00
committed by Kubernetes Prow Robot
parent f14768ff8d
commit 5672afe29e
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Elasticsearch stats exporter for Prometheus
name: elasticsearch-exporter
version: 1.4.0
version: 1.4.1
appVersion: 1.0.2
home: https://github.com/justwatchcom/elasticsearch_exporter
sources:
+1 -1
View File
@@ -59,7 +59,7 @@ Parameter | Description | Default
`service.metricsPort.name` | name for the http service | `http`
`service.annotations` | Annotations on the http service | `{}`
`service.labels` | Additional labels for the service definition | `{}`
`es.uri` | address of the Elasticsearch node to connect to | `localhost:9200`
`es.uri` | address of the Elasticsearch node to connect to | `http://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.timeout` | timeout for trying to get stats from Elasticsearch | `30s`
+1 -1
View File
@@ -49,7 +49,7 @@ es:
## of a remote Elasticsearch server. When basic auth is needed,
## specify as: <proto>://<user>:<password>@<host>:<port>. e.g., http://admin:pass@localhost:9200.
##
uri: localhost:9200
uri: http://localhost:9200
## If true, query stats for all nodes in the cluster, rather than just the
## node we connect to.