我可以使用 rrdtool 和 Perl 从 CSV 文件制作图表吗?
以下是我的 CSV 文件中的示例数据格式。
date,<options>
YYYY-MM-DD,<values>
每天早上,此 CSV 文件都会更新为下一个日期值。我可以使用 rrdtool 创建图表吗?如果可以,如何创建?
Below is the sample data format in my CSV file.
date,<options>
YYYY-MM-DD,<values>
Every next morning this CSV file has been updated with next date values. Can I use rrdtool to create graphs, and if so how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 RRD::Simple - 在 RRD 文件中创建和存储数据的简单界面并查看 RRD::Simple::Examples - 使用 RRD 的示例::简单的
Look at RRD::Simple - simple interface to create and store data in RRD files and look at RRD::Simple::Examples - Examples using RRD::Simple
RRDTool::OO
是一个优秀的模块,有很多的文档。RRDTool::OO
is an excellent module with lots of documentation.rrdtool 教程实际上首先让您将文本文件中的数据点读取到 rrdtool 的数据库中。这应该是找出问题解决方案的一个很好的起点。
http://oss.oetiker.ch/rrdtool/tut/rrdtutorial.en。 html
The rrdtool tutorial actually starts you out by having you read data points from a text file into rrdtool's database. This should be a good jumping off point for figuring out a solution to your problem.
http://oss.oetiker.ch/rrdtool/tut/rrdtutorial.en.html