使用 RRDtool 实现 RRDs::fetch
我有一些使用 RRDs 模块 (RRDs::fetch ),但现在 RRD 文件生成已更改。
64 位程序正在生成 32 位 Perl 无法读取的 RRD 文件。所以我打算使用64位RRDtool来模仿RRDs::fetch行为。有示例实现吗?
I have some legacy code which uses the RRDs module (RRDs::fetch), but now the RRD file generation is changed.
A 64-bit program is generating an RRD file which can't be read by 32-bit Perl. So I am planning to use the 64-bit RRDtool to imitate the RRDs:: fetch behavior. Is there a sample implementation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需调用rrdtool fetch即可。另一方面,您可能还想考虑安装 64 位 Perl,然后仅使用 64 位版本的
RRDs::fetch
。请注意,您可以使用 App::perlbrew 将 Perl 安装在私有目录中。
或者,如果您想在不干扰系统其余部分的情况下安装 Perl 和 RRDtool,请查看简单依赖项构建脚本。
Just call
rrdtool fetch
. On the other hand, you might also want to think about installing a 64-bit Perl and then just use the 64-bit vesion ofRRDs::fetch
.Note that you could use App::perlbrew to install Perl in a private directory.
Or if you want to install Perl AND RRDtool without disturbing the rest of your system, have a look at Simple Dependency Build Scripts.