Reputation: 7259
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?
Upvotes: 0
Views: 10015
Reputation: 7259
Look at RRD::Simple - simple interface to create and store data in RRD files and look at RRD::Simple::Examples - Examples using RRD::Simple
Upvotes: 4
Reputation: 332
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
Upvotes: 1