[prometheus-rabbitmq-export] Add skip_verify to rabbitmq-exporter (#11107)

* Add skip_verify to rabbitmq-exporter

Signed-off-by: Joseph Weigl <joseph.weigl@gmail.com>

* Bump chart version of prometheus-rabbitmq-exporter

Signed-off-by: Joseph Weigl <joseph.weigl@gmail.com>

* Restore invalid paremeter deletion

Signed-off-by: Joseph Weigl <joseph.weigl@gmail.com>
This commit is contained in:
Joseph Weigl
2019-02-08 08:39:56 -08:00
committed by Kubernetes Prow Robot
parent a2e20f40a9
commit 6f985a053c
4 changed files with 5 additions and 1 deletions
@@ -1,7 +1,7 @@
apiVersion: v1
description: Rabbitmq metrics exporter for prometheus
name: prometheus-rabbitmq-exporter
version: 0.3.0
version: 0.4.0
appVersion: v0.29.0
home: https://github.com/kbudde/rabbitmq_exporter
sources:
@@ -59,6 +59,7 @@ The following table lists the configurable parameters and their default values.
| `rabbitmq.skip_queues` | regex, matching queue names are not exported | `^$` |
| `rabbitmq.include_vhost` | regex vhost filter. Only queues in matching vhosts are exported | `.*` |
| `rabbitmq.skip_vhost` | regex, matching vhost names are not exported. First performs include_vhost, then skip_vhost | `^$` |
| `rabbitmq.skip_verify | true/0 will ignore certificate errors of the management plugin | `false` |
| `rabbitmq.exporters` | List of enabled modules. Just "connections" is not enabled by default | `exchange,node,overview,queue` |
| `rabbitmq.output_format` | Log ouput format. TTY and JSON are suported | `TTY` |
| `rabbitmq.timeout` | timeout in seconds for retrieving data from management plugin | `30` |
@@ -44,6 +44,8 @@ spec:
value: "{{ .Values.rabbitmq.include_vhost }}"
- name: SKIP_QUEUES
value: "{{ .Values.rabbitmq.skip_queues }}"
- name: SKIPVERIFY
value: "{{ .Values.rabbitmq.skip_verify }}"
- name: SKIP_VHOST
value: "{{ .Values.rabbitmq.skip_vhost }}"
- name: RABBIT_EXPORTERS
@@ -37,6 +37,7 @@ rabbitmq:
include_queues: ".*"
include_vhost: ".*"
skip_queues: "^$"
skip_verify: "false"
skip_vhost: "^$"
exporters: "exchange,node,overview,queue"
output_format: "TTY"