]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/files/default/plugins/passenger_processes
Fix new rubocop warnings
[chef.git] / cookbooks / munin / files / default / plugins / passenger_processes
index 39842a04f7585ae1185bfd23ac3fab97d9cba313..b8a06cf3af9c3ce05aaeb9ab9b17721cb30ee017 100755 (executable)
@@ -3,18 +3,18 @@
 require "English"
 
 def output_config
-  puts <<-END
-graph_category passenger
-graph_title Passenger processes
-graph_order active inactive
-graph_vlabel processes
-graph_total total
+  puts <<~END
+    graph_category passenger
+    graph_title Passenger processes
+    graph_order active inactive
+    graph_vlabel processes
+    graph_total total
 
-active.label busy servers
-active.draw AREA
-inactive.label idle servers
-inactive.draw STACK
-END
+    active.label busy servers
+    active.draw AREA
+    inactive.label idle servers
+    inactive.draw STACK
+  END
   exit 0
 end