diff options
-rwxr-xr-x | munin/munin-cpufreq | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/munin/munin-cpufreq b/munin/munin-cpufreq index b344486..7ac6951 100755 --- a/munin/munin-cpufreq +++ b/munin/munin-cpufreq @@ -40,7 +40,7 @@ def config m = findmasters max = m.map{ |i| i['max'] }.max puts 'graph_title CPU frequency' - puts "graph_args -l 0 -u #{max} --base 1000" + puts "graph_args -l 0 -u #{max * 1000} --base 1000" puts 'graph_vlabel Hz' puts 'graph_category system' puts 'graph_period second' |