Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to dump and update rrd file in memory. I know we can dump it as xml file and then read + update + restore it back as rrd. But this is not an efficient way for me as i may have to update/correct large amount of "old data" I refer this discussion

Its documentation pages talks about deamon address as a paramete, can i use this to udpate rrd data in memory ? How Do i read data from deamon ?

 rrdtool dump --daemon unix:/var/run/rrdcached.sock /var/lib/rrd/foo.rrd

Thanks

share|improve this question

1 Answer

You can dump/restore via set of pipes, modifying the data using a filter program ...

rrdtool dump old.rrd - | filter | rrdtool restore - new.rrd

If you are intent on actually having the dumped version around, you could also dump to a tmpfs partition.

share|improve this answer
Thanks Tobi, But before restoring the same rrd, i want to change few values in that. Can i do that ??? – Sumit Purohit Aug 1 '12 at 17:27
sure, you can add a filter into the pipe modifying the values on the fly ... – Tobi Oetiker Aug 2 '12 at 6:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.