]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/hardware/recipes/default.rb
Run rasdaemon everywhere, with a prometheus exporter for events
[chef.git] / cookbooks / hardware / recipes / default.rb
index 5d599e62a57da9fc74ac0ece1909e4f9015e33c4..a77908cf4c7e4fc439b59ada912a11945749a2fb 100644 (file)
@@ -225,6 +225,19 @@ ohai_plugin "lldp" do
   template "lldp.rb.erb"
 end
 
+package %w[
+  rasdaemon
+  ruby-sqlite3
+]
+
+service "rasdaemon" do
+  action [:enable, :start]
+end
+
+prometheus_exporter "rasdaemon" do
+  port 9797
+end
+
 tools_packages = []
 status_packages = {}
 
@@ -311,6 +324,7 @@ if status_packages.include?("cciss-vol-status")
   systemd_service "cciss-vol-statusd" do
     description "Check cciss_vol_status values in the background"
     exec_start "/usr/local/bin/cciss-vol-statusd"
+    nice 10
     private_tmp true
     protect_system "full"
     protect_home true
@@ -652,3 +666,7 @@ if node[:hardware][:shm_size]
     notifies :run, "execute[remount-dev-shm]"
   end
 end
+
+prometheus_collector "ohai" do
+  interval "15m"
+end