mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-10 06:14:13 +00:00
Merge pull request #324 from ritmas/feature/disable-exporter-metrics
enhancement: Add ability to disable exporter metrics itself
This commit is contained in:
commit
4cd2a5af9b
3 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,7 @@ node_exporter_binary_url: "https://github.com/{{ _node_exporter_repo }}/releases
|
|||
node_exporter_checksums_url: "https://github.com/{{ _node_exporter_repo }}/releases/download/v{{ node_exporter_version }}/sha256sums.txt"
|
||||
node_exporter_skip_install: false
|
||||
|
||||
node_exporter_web_disable_exporter_metrics: false
|
||||
node_exporter_web_listen_address: "0.0.0.0:9100"
|
||||
node_exporter_web_telemetry_path: "/metrics"
|
||||
|
||||
|
|
|
@ -26,6 +26,10 @@ argument_specs:
|
|||
node_exporter_checksums_url:
|
||||
description: "URL of the node exporter checksums file"
|
||||
default: "https://github.com/{{ _node_exporter_repo }}/releases/download/v{{ node_exporter_version }}/sha256sums.txt"
|
||||
node_exporter_web_disable_exporter_metrics:
|
||||
description: "Exclude metrics about the exporter itself (promhttp_*, process_*, go_*)."
|
||||
type: bool
|
||||
default: false
|
||||
node_exporter_web_listen_address:
|
||||
description: "Address on which node exporter will listen"
|
||||
default: "0.0.0.0:9100"
|
||||
|
|
|
@ -30,6 +30,9 @@ ExecStart={{ node_exporter_binary_install_dir }}/node_exporter \
|
|||
'--web.config=/etc/node_exporter/config.yaml' \
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if node_exporter_web_disable_exporter_metrics %}
|
||||
'--web.disable-exporter-metrics' \
|
||||
{% endif %}
|
||||
{% if node_exporter_version is version('1.5.0', '>=') and
|
||||
node_exporter_web_listen_address is iterable and
|
||||
node_exporter_web_listen_address is not mapping and
|
||||
|
|
Loading…
Reference in a new issue