Graphite does two things:
- Store numeric time-series data
- Render graphs of this data on demand
What Graphite does not do is collect data for you, however there are some tools out there that know
| <? | |
| // Helper Functions for cucm_cdr files | |
| // Convert the signed IP to a long which can be used by ip2long later on | |
| function cucm_cdr_ip_to_long( $signed_int_ip ) { | |
| $hex = dechex($signed_int_ip); | |
| $pad = 8 - strlen($hex); | |
| for ($i = 1; $i <= $pad; $i++) | |
| { | |
| $hex = "0".$hex; |
Graphite does two things:
What Graphite does not do is collect data for you, however there are some tools out there that know