${rrddump} ${file} > ${xmldir}/${file}.xml done chmod 775 ./dumprrdtool.sh mkdir /tmp/rraxml chmod 777 /tmp/rraxml ./dumprrdtool.sh 2. 脚本会将rra文件转成xml文件 将xml传用ssh或rsync等方式传到新服务器上 3.新服务上还原文件 mkdir /tmp/rraxml chmod 777 /tmp/rraxml 将xml文件放到...
3 You can dump/restore via set of pipes, modifying the data using a filter program ... rrdtool dump old.rrd - | filter | rrdtool restore - new.rrd If you are intent on actually having the dumped version around, you could also dump to a tmpfs partition. Share Improve this answer F...
do ${rrddump} ${file} > ${xmldir}/${file}.xml done chmod 775 ./dumprrdtool.sh mkdir /tmp/rraxml chmod 777 /tmp/rraxml ./dumprrdtool.sh 2. 脚本会将rra文件转成xml文件 将xml传用ssh或rsync等方式传到新服务器上 3.新服务上还原文件 mkdir /tmp/rraxml chmod 777 /tmp/rraxml 将xml文件...
graph(将数据绘图,Create a graphfrom data stored in one or several RRDs. Apart from generating graphs, data canalso be extracted to stdout. Check rrdgraph) dump(将数据取出,Dump the contents of an RRD in plain ASCII. In connection with restore you can use this to move an RRD from one c...
大家在遇到一个rrd库的时候,可以通过rrdtool info 命令来获取库文件的DataSource定义,通过rrdtool dump命令来查看库文件的记录,大致确定数据的时间范围。 画出来的图片大致是如下的结果就正确了,图片中的负载是由dd命令人为制造的,有些不自然。此外,具体的知识的理解,还需要靠大家自己看文档。
Valid commands: create, update, updatev, graph, dump, restore,last, first, info, fetch, tune, resize, xport RRDtool is distributed under the Terms of the GNU General Public License Version 2. (www.gnu.org/copyleft/gpl.html) For more information read the RRD manpages 从以上可以看出,使用方...
#3, rrdtool.damps() 将rrd文件转换成xml文件#damps = rrdtool.dump('static/rrdfiles/downloads.rrd')#print(damps) #4, rrdtool.info(filename) 将rrd文件的结构信息以字典的形式表现起来.info = rrdtool.info('static/rrdfiles/downloads.rrd')#print(info)#print(info["ds[metric].type"]) # GAUGE#...
其实剩下的还有 xport、dump、restore、resize、tune、rrdcgi 几个操作没讲,而且有一些应用经验方面的东西也没有提到, 不过想要全部写出来,可能太耗时间和精力了,这些东西足足写了我2个星期才写完。中间还要不断的做实验以验证正确性,怕误导了大家。 如果需要的话,可以自己下载官方文档学习,或者能有热心的朋友补充...
/usr/share/man/man1/rrddump.1.gz /usr/share/man/man1/rrdfetch.1.gz /usr/share/man/man1/rrdfirst.1.gz /usr/share/man/man1/rrdgraph.1.gz /usr/share/man/man1/rrdgraph_data.1.gz /usr/share/man/man1/rrdgraph_examples.1.gz /usr/share/man/man1/rrdgraph_graph.1.gz /usr/share...
$>rrdtool update tcpdump.rrd 1061811856:114:0:50:1199:0:821073 上面的 1061811856 即时间值,如果就是要现在的时间值,则可以 N 代表,但要转换成秒值,通常我们都会以 代碼: $>timestamp=`date +%s ` 来转换成现在的秒数,如果是某些特定时间,则可以 ...