Skip to content

Commit

Permalink
[prometheus-rabbitmq-export] Add skip_verify to rabbitmq-exporter (he…
Browse files Browse the repository at this point in the history
…lm#11107)

* Add skip_verify to rabbitmq-exporter

Signed-off-by: Joseph Weigl <[email protected]>

* Bump chart version of prometheus-rabbitmq-exporter

Signed-off-by: Joseph Weigl <[email protected]>

* Restore invalid paremeter deletion

Signed-off-by: Joseph Weigl <[email protected]>
  • Loading branch information
eloo authored and k8s-ci-robot committed Feb 8, 2019
1 parent a2e20f4 commit 6f985a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/prometheus-rabbitmq-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
1 change: 1 addition & 0 deletions stable/prometheus-rabbitmq-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 2 additions & 0 deletions stable/prometheus-rabbitmq-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions stable/prometheus-rabbitmq-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ rabbitmq:
include_queues: ".*"
include_vhost: ".*"
skip_queues: "^$"
skip_verify: "false"
skip_vhost: "^$"
exporters: "exchange,node,overview,queue"
output_format: "TTY"
Expand Down

0 comments on commit 6f985a0

Please sign in to comment.