diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-07-22 11:50:30 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-07-22 11:50:30 +0000 |
commit | a417894be148331feaea7f20f97bb17bf66b1395 (patch) | |
tree | 6ba0f97602daf429f451fbe7fff49408d245b622 | |
parent | 7e2d3dc28d9c22e3c63eb17b0fef2c22d4a486ef (diff) |
Properly scale -u
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@166 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-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' |