summaryrefslogtreecommitdiffstats
path: root/roles/prometheus/meta/argument_specs.yml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-09-15 22:17:49 +0200
committerAhmed Abdelhalim <[email protected]>2025-09-15 22:26:15 +0200
commitd7c3044edf15ca2ee8a8bcc2fcdce8e26e4133d9 (patch)
tree111df0a6afbf307b6ed9e7a112d02dffa506e892 /roles/prometheus/meta/argument_specs.yml
parent42899d44598c9cd848af1c86427f0b4c03f54493 (diff)
Add prometheus role (with node exporter)
Diffstat (limited to 'roles/prometheus/meta/argument_specs.yml')
-rw-r--r--roles/prometheus/meta/argument_specs.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/roles/prometheus/meta/argument_specs.yml b/roles/prometheus/meta/argument_specs.yml
new file mode 100644
index 00000000..72ec6819
--- /dev/null
+++ b/roles/prometheus/meta/argument_specs.yml
@@ -0,0 +1,26 @@
+---
+argument_specs:
+ main:
+ short_description: "Install and configure Prometheus monitoring system"
+ description: "Install and configure Prometheus monitoring system"
+ options:
+ prometheus_port:
+ description: "Port for Prometheus web interface"
+ type: "int"
+ default: 9090
+ prometheus_retention:
+ description: "Data retention period for Prometheus"
+ type: "str"
+ default: "15d"
+ prometheus_scrape_interval:
+ description: "Global scrape interval for metrics collection"
+ type: "str"
+ default: "15s"
+ prometheus_evaluation_interval:
+ description: "Interval for evaluating rules"
+ type: "str"
+ default: "15s"
+ node_exporter_port:
+ description: "Port for node-exporter metrics endpoint"
+ type: "int"
+ default: 9100