Space
Space

Reputation: 7259

Can I use rrdtool with Perl to make graphs from CSV files?

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

Answers (3)

Space
Space

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

Jordan T. Cox
Jordan T. Cox

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

innaM
innaM

Reputation: 47859

RRDTool::OO is an excellent module with lots of documentation.

Upvotes: 1

Related Questions