Earlier I was using Ganglia to monitor a bunch of nodes but now we are moving to Graphite and will be using RRDtool as our storage engine. I have build all graphite related files from source and can start carbon and graphite daemons. But how can I view these graphs on the ui?
How to view graphite graphs on ui?
596 views Asked by user488474 At
3
There are 3 answers
0
On
You could try the recent development version of graphite with ceres TSDB.
ceres ; Ceres is known to have a superior performance and lower storage area compared to whisper DB.
0
On
Other than using the built-in graphite-web as @erbdex described, you can also try Grafana, which is an open source dashboarding software. Grafana can pull in data from graphite (and also other backends).
Or also AppsDash, which can also do alerting, but not open source. AppsDash speaks graphite (and statsd) protocols.
This is a very broad question. Nevertheless-
Graphite stack is made up of three parts-
It is Graphite web that is going to display the graphs by reading the directory tree of whisper. By default, the stack seamlessly installs itself at
/opt/graphite
with/opt/graphite/storage/whisper
being the default location of the RRD directory tree.Another thing you have to do is that you need to make an entry into your webserver's virtualhost area. If you are using apache, you can do something like-
In most cases, this is all the customization that is required to setup the stack. i recommend you take a look at some git gists on your architecture and distribution.