Fix: systemd_exporter - rename collector flags (#167)

* Fix systemd_exporter vars to match the exporter flags

---------

Signed-off-by: Jeremy Miller <runofthemill@users.noreply.github.com>
Signed-off-by: prombot <prometheus-team@googlegroups.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: prombot <prometheus-team@googlegroups.com>
Co-authored-by: SuperQ <SuperQ@users.noreply.github.com>
This commit is contained in:
jmills 2023-07-26 06:26:04 -07:00 committed by GitHub
parent fd2427a3d4
commit 9f9bd6830f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 13 deletions

View file

@ -11,8 +11,8 @@ systemd_exporter_enable_restart_count: false
systemd_exporter_enable_ip_accounting: false
systemd_exporter_enable_file_descriptor_size: false
systemd_exporter_unit_whitelist: ""
systemd_exporter_unit_blacklist: ""
systemd_exporter_unit_include: ""
systemd_exporter_unit_exclude: ""
systemd_exporter_binary_install_dir: "/usr/local/bin"
systemd_exporter_system_group: "systemd-exporter"

View file

@ -41,10 +41,10 @@ argument_specs:
description: Enables file descriptor size metrics. This feature will cause exporter to run as root as it needs access to /proc/X/fd"
type: "bool"
default: false
systemd_exporter_unit_allowlist:
description: "Include some systemd units. Expects a regex. More in L(https://github.com/prometheus-community/systemd_exporter#configuration)"
systemd_exporter_unit_denylist:
description: "Exclude some systemd units. Expects a regex. More in L(https://github.com/prometheus-community/systemd_exporter#configuration)"
systemd_exporter_unit_include:
description: "Include some systemd units. Expects a regex. More in L(systemd_exporter docs,https://github.com/prometheus-community/systemd_exporter#configuration)."
systemd_exporter_unit_exclude:
description: "Exclude some systemd units. Expects a regex. More in L(systemd_exporter docs,https://github.com/prometheus-community/systemd_exporter#configuration)."
systemd_exporter_binary_install_dir:
description:
- "I(Advanced)"

View file

@ -10,19 +10,19 @@ User={{ systemd_exporter_system_user }}
Group={{ systemd_exporter_system_group }}
ExecStart={{ systemd_exporter_binary_install_dir }}/systemd_exporter \
{% if systemd_exporter_enable_restart_count %}
--collector.enable-restart-count \
--systemd.collector.enable-restart-count \
{% endif %}
{% if systemd_exporter_enable_file_descriptor_size %}
--collector.enable-file-descriptor-size \
--systemd.collector.enable-file-descriptor-size \
{% endif %}
{% if systemd_exporter_enable_ip_accounting %}
--collector.enable-ip-accounting \
--systemd.collector.enable-ip-accounting \
{% endif %}
{% if systemd_exporter_unit_whitelist != ""%}
--collector.unit-whitelist={{ systemd_exporter_unit_whitelist }} \
{% if systemd_exporter_unit_include != ""%}
--systemd.collector.unit-include={{ systemd_exporter_unit_include }} \
{% endif %}
{% if systemd_exporter_unit_blacklist != "" %}
--collector.unit-blacklist={{ systemd_exporter_unit_blacklist }} \
{% if systemd_exporter_unit_exclude != "" %}
--systemd.collector.unit-exclude={{ systemd_exporter_unit_exclude }} \
{% endif %}
--web.listen-address={{ systemd_exporter_web_listen_address }}