Graphite and deployment dashboards
How Graphite is used with deployment dashboards
Graphite is a data storage application for time stream data that is used to store data performance data, error counts and other statistics about our servers.
All data is stored with a key which is made up of multiple nodes which each node in the key representing a particular aspect of the data item, eg. server name or metric type.
In addition to data storage, is it possible to use Graphite functions to manipulate the data streams. Below is a list of the most used functions/combinations of functions used in the dashboards. Full Graphite documentation can be found here.
hitcount
This is helpful when trying to get actual volumes out of Graphite as data is events per second for the time interval (usually but not always 5 seconds). This means that a value of 0.2 represents a single event in a 5 second interval, and means that summing the data in Grafana results in not integer values. Wrapping the data in hitcount
will convert it back to the expected count value.
The second parameter is the interval size that is summed together. Care must be taken with this value as data can be lost when a large time period is queried with a small interval. Increasing the number of data points returned can ensure accurate data at the cost of performance.
integral + hitcount
Integral returns the sum of values for the time period, or if graphing, the sum of values up until that point in time. Used with hitcount
, it can help by ensuring no data is lost as a result of using a small interval with a large time period.
The resulting data should not be graphed in most cases, unless it is to compare to similar data with a time offset.
aliasByNode
Used to extract one node out of the key and then use that as the name of the data column. This is particularly helpful when needing to group summary data.
sumSeries
Sum series data together. Can be used by itself to return a single stream of data or with aliasByNode
to return grouped sets of data.