あなたのアプローチは正しいです。/ proc / statを生データとして使用し、rrdtoolなどにフィードできます。私はこのようなことを自分でやったので、それが100%可能であることを知っています。システム全体の負荷または各コアを個別に適切にグラフ化できます。
これが私自身の実際の例です:
安心--あなたはそれを行うことができます、それは基本的な数学だけでは難しくありません、私のグラフはその実例です。データを収集するには、ramdiskにローカライズされた一時ファイルに/ proc / statのスナップショットを作成し、そのファイルを解析して1分ごとにデータを収集します。
データの解析方法(bashスクリプトのフラグメント):
cat=/bin/cat # others defined the same way
......
$cat /proc/stat > /ramdisk/tmp/stat
ssCpuRawUser=`$cat /ramdisk/tmp/stat|$grep "cpu " | $awk '{print $2}'`
ssCpuRawNice=`$cat /ramdisk/tmp/stat|$grep "cpu " | $awk '{print $3}'`
#other columns follow .......
#the most important there is that it is an incrementing COUNTER.
if [ ! -f ${data_dir}/sys.cpu.rrd ];then
$rrdtool create ${data_dir}/sys.cpu.rrd -s 60 \
DS:ssCpuRawUser:COUNTER:300:0:1250000 \
DS:ssCpuRawNice:COUNTER:300:0:1250000 \
DS:ssCpuRawSystem:COUNTER:300:0:1250000 \
DS:ssCpuRawIdle:COUNTER:300:0:1250000 \
DS:ssCpuRawIOwait:COUNTER:300:0:1250000 \
DS:ssCpuRawIRQ:COUNTER:300:0:1250000 \
DS:ssCpuRawSoftIRQ:COUNTER:300:0:1250000 \
RRA:AVERAGE:0.5:1:532800
fi
$rrdtool update ${data_dir}/sys.cpu.rrd N:$ssCpuRawUser:$ssCpuRawNice:$ssCpuRawSystem:$ssCpuRawIdle:$ssCpuRawIOwait:$ssCpuRawIRQ:$ssCpuRawSoftIRQ
# then in a loop each core the same way until all are parsed.
rrdデータベースにデータを取得した後グラフを作成でき、空が限界です:) http://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html