我已经收集了运行数据,将性能数据(例如 CPU 使用率或网络带宽)放入 rrd 文件中。
我的问题是,集群中的每个节点都有一个文件。
如何获取集群的概览图?
(例如,我有 5 个节点,每个节点发送 10Mbit,因此图表应该显示 50Mbit)
答案1
您只需为 rrdtool 的 DEF: 部分指定每个文件即可。请参阅下面的一个我做的 hacky one-off 作为示例。请注意,其中一个是 foo_kbrandt_foo1,另一个是 foo_kbrandt_foo2。因此,图表是从两个不同的 rrd 文件中提取的。
rrdtool graph MessagesDeliveredPerMinInfomationStores.png \
--imgformat=PNG \
--title="Messages Delivered Per Minute" \
--base=1000 \
--height=600 \
--width=1000 \
--start='February 13 2009' \
--slope-mode \
--lower-limit=0 \
--vertical-label="Messages Delivered Per Minute" \
--step 10000 \
'DEF:a=/usr/local/nagios/var/rra/foo/foo_kbrandt_foo1_delivered.rrd:msg_per_min:AVERAGE' \
'LINE2:a#FF0000:arf Messages Per Minute\l' \
'GPRINT:a:AVERAGE:arf Delivered Average\: %7.2lf %s\j' \
'GPRINT:a:MAX:arf Delivered MAX\: %7.2lf %s\j' \
'DEF:b=/usr/local/nagios/var/rra/foo/foo_kbrandt_foo2_delivered.rrd:msg_per_min:AVERAGE' \
'LINE2:b#33FF33:blip Messages Per Minute\l' \
'GPRINT:b:AVERAGE:blip Delivered Average\: %7.2lf %s\j' \
'GPRINT:b:MAX:blip Delivered MAX\: %7.2lf %s\j' \