无法从rrd文件中获取数据
我在 Windows 平台上使用 RRDTool 版本 1.2.30,我有一个 .rrd 文件,当我尝试使用“rrdtool fetch”获取数据时,出现以下错误。
错误:RRD 不包含 RRA 匹配所选的 CF
在触发以下命令时
rrdtool 获取使用情况.rrd AVERAGE -r 3600 -s 1298264400 -e 1298350800
我真的不知道这有什么问题,即使我尝试使用 rrdtool dump over use.rrd 查看 xml 中的数据,它也向我显示以下错误。
<!-- Round Robin Database Dump --><rrd> <version> 0003 </version
<step> 2 </step> <!-- Seconds -->
<lastupdate> 0 </lastupdate> <!-- 1970-01-01 05:30:00 In
e -->
<ds>
<name> </name>
<type> </type>
<minimal_heartbeat> 0 </minimal_heartbeat>
<min> 5.9287877501e-322 </min>
<max> NaN </max>
<!-- PDP Status -->
<last_ds> LAST </last_ds>
<value> 5.0000000000e-001 </value>
<unknown_sec> 1 </unknown_sec>
</ds>
<ds>
<name> </name>
<type> </type>
<minimal_heartbeat> 0 </minimal_heartbeat>
<min> 5.9287877501e-322 </min>
<max> NaN </max>
<!-- PDP Status -->
<last_ds> </last_ds>
<value> 2.4703282292e-323 </value>
<unknown_sec> 2016 </unknown_sec>
</ds>
<!-- Round Robin Archives --></rrd>
ERROR: unknown data acquisition function ''
I am using RRDTool version 1.2.30 on windows platform, i have one .rrd file and when i tried to fetch data using 'rrdtool fetch' it is giving me following error.
ERROR: the RRD does not contain an RRA
matching the chosen CF
on firing following command
rrdtool fetch usage.rrd AVERAGE -r
3600 -s 1298264400 -e 1298350800
i really don't know whats wrong with this even when i tried to view the data in xml using rrdtool dump over usage.rrd its is showing me following error.
<!-- Round Robin Database Dump --><rrd> <version> 0003 </version
<step> 2 </step> <!-- Seconds -->
<lastupdate> 0 </lastupdate> <!-- 1970-01-01 05:30:00 In
e -->
<ds>
<name> </name>
<type> </type>
<minimal_heartbeat> 0 </minimal_heartbeat>
<min> 5.9287877501e-322 </min>
<max> NaN </max>
<!-- PDP Status -->
<last_ds> LAST </last_ds>
<value> 5.0000000000e-001 </value>
<unknown_sec> 1 </unknown_sec>
</ds>
<ds>
<name> </name>
<type> </type>
<minimal_heartbeat> 0 </minimal_heartbeat>
<min> 5.9287877501e-322 </min>
<max> NaN </max>
<!-- PDP Status -->
<last_ds> </last_ds>
<value> 2.4703282292e-323 </value>
<unknown_sec> 2016 </unknown_sec>
</ds>
<!-- Round Robin Archives --></rrd>
ERROR: unknown data acquisition function ''
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的猜测是,这个rrd文件是由rrdtool的其他副本创建的...在Windows下,可以通过使用不同的编译器编译它们来创建稍微不兼容的rrdtool版本:-(
my guess is, that this rrd file was created by some other copy of rrdtool ... under windows it is possible to create slightly incompatible versions of rrdtool by compiling them with different compilers :-(
Linux 上创建的 Rrd 数据库与 Windows 上的 rrdtool(相同版本)不兼容。在 1.3.8 版本上测试。
您必须在 Linux 上将 rrd 导出到 xml:
并在 Windows 上导入它:
如果 Linux (1.234e+05) 和 Windows (1,234e+05) 之间浮点数的区域设置表示不同,则必须先转换 file.xml 中的数字进口。
Rrd database created at Linux is not compatible with rrdtool (same version) at Windows. Tested on version 1.3.8.
You must export rrd to xml at Linux:
and import it at Windows:
If your locale representation of floating point number differs between Linux (1.234e+05) and Windows (1,234e+05), you must convert numbers in file.xml before import.