2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

added graph_cale no, and improved info text

This commit is contained in:
Sec 2010-11-04 10:50:42 +01:00 committed by Steve Schnepp
parent baf8f4c9cc
commit ceb3af8e70

View File

@ -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