]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/recipes/default.rb
civicrm: fix lint issues
[chef.git] / cookbooks / prometheus / recipes / default.rb
index cecfbc74d37c56a92c9ec3f3e32c160f768e8692..df3ec2ea5fe3499f4918f0324a232b950aa2b409 100644 (file)
@@ -115,6 +115,26 @@ prometheus_exporter "node" do
   metric_relabel metric_relabel
 end
 
+unless node[:prometheus][:junos].empty?
+  targets = node[:prometheus][:junos].collect { |_, details| details[:address] }.sort.join(",")
+
+  prometheus_exporter "junos" do
+    port 9326
+    options %W[
+      --ssh.user=prometheus
+      --ssh.keyfile=/var/lib/prometheus/junos-exporter/id_rsa
+      --ssh.targets=#{targets}
+      --bgp.enabled=false
+      --lacp.enabled=true
+      --ldp.enabled=false
+      --ospf.enabled=false
+      --power.enabled=false
+    ]
+    ssh true
+    register_target false
+  end
+end
+
 unless node[:prometheus][:snmp].empty?
   prometheus_exporter "snmp" do
     port 9116