Graphite: Difference between revisions

From air
Jump to navigation Jump to search
(Created page with "Realtime scalable graph http://graphite.wikidot.com/")
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


http://graphite.wikidot.com/
http://graphite.wikidot.com/



=The Graphite Message Format=

All graphite messages are of the following form.

metric_path value timestamp\n


So for example,
foo.bar.baz 42 74857843
where the last number is a UNIX epoch time.

Example of metrics producer : https://github.com/graphite-project/graphite-web/blob/master/examples/example-client.py

=Installation=
<pre>
pip install carbon
pip install whisper
pip install graphite-web
</pre>

Latest revision as of 09:23, 24 February 2016

Realtime scalable graph

http://graphite.wikidot.com/


The Graphite Message Format

All graphite messages are of the following form.

metric_path value timestamp\n


So for example,

foo.bar.baz 42 74857843

where the last number is a UNIX epoch time.

Example of metrics producer : https://github.com/graphite-project/graphite-web/blob/master/examples/example-client.py

Installation

pip install carbon
pip install whisper
pip install graphite-web