diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-07-22 11:38:56 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-07-22 11:38:56 +0000 |
commit | b9e441dd54b16673f7a2e0a9d9547cbe94525e33 (patch) | |
tree | d310754a5609277d35e4a531c8e342398042da24 | |
parent | ce4dcd7da279031290b4e8851a5f05e80ba7d92a (diff) |
Add max as -u again
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@164 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-rwxr-xr-x | munin/munin-cpufreq | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/munin/munin-cpufreq b/munin/munin-cpufreq index 70859c8..d8126eb 100755 --- a/munin/munin-cpufreq +++ b/munin/munin-cpufreq @@ -40,8 +40,7 @@ def config m = findmasters max = m.map{ |i| i['max'] }.max puts 'graph_title CPU frequency' - #puts "graph_args -l 0 -l #{max} --base 1000" - puts "graph_args -l 0 --base 1000" + puts "graph_args -l 0 -u #{max} --base 1000" puts 'graph_vlabel Hz' puts 'graph_category system' puts 'graph_period second' |