diff --git a/plugins/other/cpuspeed_sane b/plugins/other/cpuspeed_sane index b169b5b3..097b9f63 100755 --- a/plugins/other/cpuspeed_sane +++ b/plugins/other/cpuspeed_sane @@ -32,10 +32,11 @@ if [ "$1" = "config" ]; then echo 'graph_args --base 1000 -l 0' echo 'graph_vlabel speed in MHz' echo 'graph_category system' - echo 'graph_info This graph shows CPU speed.' + echo 'graph_scale no' + echo 'graph_info Current CPU speed in MHz. Available levels for the CPU:' `$sysctl -n dev.cpu.0.freq_levels|sed 's!/[0-9]*!!g;s! !, !g'` 'MHz' echo cpu0.label cpu0 - echo cpu0.info CPU0 Speed + echo cpu0.info `$sysctl -n hw.model` Speed exit 0 fi