2024-02-23 03:11:02 +00:00
---
# yamllint disable rule:line-length
argument_specs :
main :
short_description : "Prometheus Process exporter"
description :
2024-04-22 10:12:23 -04:00
- "Deploy prometheus L(Process exporter,https://github.com/ncabatoff/process-exporter) using ansible"
2024-02-23 03:11:02 +00:00
author :
- "Prometheus Community"
options :
process_exporter_version :
description : "Process exporter package version. Also accepts latest as parameter."
2024-07-22 14:31:45 +00:00
default : "0.8.3"
2024-02-23 03:11:02 +00:00
process_exporter_binary_url :
description : "URL of the Process exporter binaries .tar.gz file"
2024-10-15 17:10:43 +00:00
default : "https://github.com/{{ _process_exporter_repo }}/releases/download/v{{ process_exporter_version }}/process-exporter-{{ process_exporter_version }}.{{ ansible_system | lower }}-{{ _process_exporter_go_ansible_arch }}.tar.gz"
2024-02-23 03:11:02 +00:00
process_exporter_checksums_url :
description : "URL of the Process exporter checksums file"
2024-02-23 03:52:07 +00:00
default : "https://github.com/{{ _process_exporter_repo }}/releases/download/v{{ process_exporter_version }}/checksums.txt"
2024-02-23 03:11:02 +00:00
process_exporter_web_listen_address :
description : "Address on which Process exporter will listen"
default : "0.0.0.0:9256"
2024-03-08 19:17:25 +00:00
process_exporter_web_telemetry_path :
description : "Path under which to expose metrics"
default : "/metrics"
2024-03-08 19:59:03 +00:00
process_exporter_tls_server_config :
description :
- "Configuration for TLS authentication."
type : "dict"
process_exporter_http_server_config :
description :
- "Config for HTTP/2 support."
type : "dict"
process_exporter_basic_auth_users :
description : "Dictionary of users and password for basic authentication. Passwords are automatically hashed with bcrypt."
type : "dict"
2024-02-23 03:11:02 +00:00
process_exporter_names :
description :
- "Processes which should be monitored."
- "Syntax is the same as in"
- "L(using-a-config-file Default is consistent with deb/rpm packages,https://github.com/ncabatoff/process-exporter#using-a-config-file Default is consistent with deb/rpm packages)"
2024-02-23 03:40:15 +00:00
default : !unsafe "[{name: '{{.Comm}}', cmdline: [.+]}]"
2024-02-23 03:11:02 +00:00
process_exporter_binary_install_dir :
description :
- "I(Advanced)"
- "Directory to install process_exporter binary"
default : "/usr/local/bin"
process_exporter_system_group :
description :
- "I(Advanced)"
- "System group for Process exporter"
default : "process-exp"
process_exporter_system_user :
description :
- "I(Advanced)"
- "Process exporter user"
default : "process-exp"
2024-10-15 17:10:43 +00:00
process_exporter_local_cache_path :
description : "Local path to stash the archive and its extraction"
default : "/tmp/process_exporter-{{ ansible_system | lower }}-{{ _process_exporter_go_ansible_arch }}/{{ process_exporter_version }}"
process_exporter_config_dir :
description : "Path to directory with process_exporter configuration"
default : "/etc/process_exporter"