From: Arne V. <cob...@us...> - 2004-07-13 12:15:14
|
Update of /cvsroot/jrobin/res/demo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26733/demo Added Files: eth0.rrd eth1.rrd export-graphdef.xml exportdef.xml Log Message: JRobin 1.4.0 - Minor tweaks - Added ExportExportDemo and ExportImportDemo - Added importXml() with dsNamePrefix to FetchData - Added demo resources --- NEW FILE: eth1.rrd --- (This appears to be a binary file; contents omitted.) --- NEW FILE: eth0.rrd --- (This appears to be a binary file; contents omitted.) --- NEW FILE: exportdef.xml --- <!-- This is a sample RrdExportDef in XML format. --> <rrd_export_def> <span> <start>${start}</start> <end>${end}</end> </span> <datasources> <def> <name>bytesIn</name> <rrd>${rrd}</rrd> <source>ifInOctets</source> <cf>AVERAGE</cf> </def> <def> <name>bytesOut</name> <rrd>${rrd}</rrd> <source>ifOutOctets</source> <cf>AVERAGE</cf> </def> <def> <name>bitsIn</name> <rpn>bytesIn,8,*</rpn> </def> <def> <name>bitsOut</name> <rpn>bytesOut,8,*</rpn> </def> </datasources> <exports> <export> <datasource>bitsIn</datasource> <legend>Incoming traffic</legend> </export> <export> <datasource>bitsOut</datasource> <legend>Outgoing traffic</legend> </export> </exports> </rrd_export_def> --- NEW FILE: export-graphdef.xml --- <!-- This is a sample RrdGraphDef in XML format. --> <rrd_graph_def> <span> <start>${start}</start> <end>${end}</end> </span> <datasources> <export_data> <file>${export1}</file> <ds_name_prefix>eth0-</ds_name_prefix> </export_data> <export_data> <file>${export2}</file> <ds_name_prefix>eth1-</ds_name_prefix> </export_data> </datasources> <graph> <line> <datasource>eth1-2</datasource> <color>#0000FF</color> <legend>Outgoing eth1</legend> <width>2</width> </line> <line> <datasource>eth0-2</datasource> <color>#FF0000</color> <legend>Outgoing eth0</legend> <width>2</width> </line> </graph> </rrd_graph_def> |