leveldb backed conenctor for graphite web
You are familiar on how to install and operate graphite in general. If not, have a look at these instructions. The install from source instructions (this one) is what the rest of the document specifically based on.
Assumption : The graphite version is 0.10.0 or above. Specifically, it needs to support the STORAGE_FINDERS directive
Add the following to your local_settings.py
STORAGE_FINDERS = (
'pyleveltsd_finder.gateway.LevelRpcFinder',
)
LEVEL_RPC_PATH="http://localhost:2005"
Note that you may need to modify the STORAGE_FINDERS section if you have other storage mechanisms that need to be used. Most users would be interested in also adding graphite.finders.standard.StandardFinder to the list.