Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to cleanup the graphite whisper's data?

Tags:

graphite

I want to delete the graphite's storage whisper's data but there ain't anything in the graphite docs.

One way I did is deleting the the files at /opt/graphite...../whispers/stats... manually.

But this is tedious, so how do I do it?

like image 336
Autodidact Avatar asked Mar 06 '12 15:03

Autodidact


1 Answers

Currently, deleting files from /opt/graphite/storage/whisper/ is the correct way to clean up whisper data.

As for the tedious side of the process, you could use the find command if there is a certain pattern that your trying to remove.

find /opt/graphite/storage/whisper -name loadavg.wsp -delete

Similar Question on answers.launchpad.net/graphite

like image 135
dannyla Avatar answered Sep 27 '22 23:09

dannyla