]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/prometheus/recipes/server.rb
Label targets with appropriate instance names
[chef.git] / cookbooks / prometheus / recipes / server.rb
index f82fe04bf349d66691f7f0c886fe753073e03c89..1e164cd1d3c751faf4d502034dc4e64a345a5532 100644 (file)
 # limitations under the License.
 #
 
+include_recipe "apache"
+include_recipe "apt"
+
+passwords = data_bag_item("prometheus", "passwords")
+
 package "prometheus"
 
 clients = search(:node, "recipes:prometheus\\:\\:default").sort_by(&:name)
 
+prometheus_jobs = clients.sort_by(&:name).each_with_object({}) do |client, jobs|
+  client[:prometheus][:exporters].each do |name, address|
+    jobs[name] ||= []
+    jobs[name] << { :address => address, :name => client.name }
+  end
+end
+
 template "/etc/prometheus/prometheus.yml" do
   source "prometheus.yml.erb"
   owner "root"
   group "root"
   mode "644"
-  variables :clients => clients
+  variables :jobs => prometheus_jobs
 end
 
 service "prometheus" do
   action [:enable, :start]
   subscribes :reload, "template[/etc/prometheus/prometheus.yml]"
 end
+
+package "grafana-enterprise"
+
+template "/etc/grafana/grafana.ini" do
+  source "grafana.ini.erb"
+  owner "root"
+  group "grafana"
+  mode "640"
+  variables :passwords => passwords
+end
+
+service "grafana-server" do
+  action [:enable, :start]
+  subscribes :restart, "template[/etc/grafana/grafana.ini]"
+end
+
+apache_module "alias"
+apache_module "proxy_http"
+
+ssl_certificate "prometheus.openstreetmap.org" do
+  domains ["prometheus.openstreetmap.org", "prometheus.osm.org"]
+  notifies :reload, "service[apache2]"
+end
+
+apache_site "prometheus.openstreetmap.org" do
+  template "apache.erb"
+end