无法从rrd文件中获取数据

发布于 2024-10-18 23:35:15 字数 1748 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

︶葆Ⅱㄣ 2024-10-25 23:35:15

我的猜测是,这个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 :-(

杀手六號 2024-10-25 23:35:15

Linux 上创建的 Rrd 数据库与 Windows 上的 rrdtool(相同版本)不兼容。在 1.3.8 版本上测试。

您必须在 Linux 上将 rrd 导出到 xml:

rrdtool dump file.rrd > file.xml

并在 Windows 上导入它:

rrdtool.exe restore file.xml file.rrd

如果 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:

rrdtool dump file.rrd > file.xml

and import it at Windows:

rrdtool.exe restore file.xml file.rrd

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文