1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

plugins/puppet/puppet_runtime: fix formatting

Used rufo https://github.com/ruby-formatter/rufo
This commit is contained in:
Kenyon Ralph 2020-08-22 15:45:51 -07:00 committed by Lars Kruse
parent 852aa41ab7
commit 6052c56d94

View file

@ -15,9 +15,9 @@
# reports how long the puppet agent took to apply the catalog
def get_runtime
logfile = ENV['puppet_logfile'] || '/var/log/messages'
logfile = ENV["puppet_logfile"] || "/var/log/messages"
t = Time.now
dateformat = ENV['puppet_logformat'] || "^%b %d"
dateformat = ENV["puppet_logformat"] || "^%b %d"
today = t.strftime(dateformat)
File.open(logfile).grep(/#{today}/).grep(/Finished catalog run in/).reverse_each do |line|
if line =~ /in (.*) seconds/
@ -28,18 +28,17 @@ def get_runtime
end
case ARGV[0]
when 'config'
puts "graph_category other"
puts "graph_args --base 1000 -l 0"
puts "graph_scale no"
puts "graph_title puppet catalog run time"
puts "graph_vlabel Seconds"
puts "runtime.label Catalog application time"
exit 0
when 'autoconf'
puts "yes"
exit 0
else
get_runtime
when "config"
puts "graph_category other"
puts "graph_args --base 1000 -l 0"
puts "graph_scale no"
puts "graph_title puppet catalog run time"
puts "graph_vlabel Seconds"
puts "runtime.label Catalog application time"
exit 0
when "autoconf"
puts "yes"
exit 0
else
get_runtime
end