-1

I have a rrd file that i have created using python + rrdtool lib.

How can i look at the content of this file ? is there any way other then fetching data from rrdtool API?

Is there any RRD editor ?

I have recently started using this kind of file, so i am not sure how to visualize it.

Thanks in advance for your Help. Sumit Purohit

Sumit Purohit
  • 168
  • 2
  • 12
  • Have you tried googling for "RRD editor" ? Because I googled one and found 1 editor in a grand total of 5 seconds – Arnab Datta Jul 17 '12 at 23:42
  • Thanks for your "constructive" reply, meanwhile i figured rrdtool has a function rrdtool.graph which takes a png file as one of its argument and can generate an image. http://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html – Sumit Purohit Jul 18 '12 at 00:26
  • one more way is to use `rrdtool dump ` [refer this for more info](http://oss.oetiker.ch/rrdtool/doc/rrddump.en.html) – Sumit Purohit Jul 19 '12 at 22:29

1 Answers1

1

rrdtool info <file.rrd> will give you an overview of what is in the file and rrdtool dump <file.rrd> will give you the whole content in xml format.

Tobi Oetiker
  • 5,167
  • 2
  • 17
  • 23