|
Variable Series Types |
Top Previous Next |
|
Series Type setting completely change the style of how "raw" source values are converted to chart data points. There are four series types:
Gauge The source value is kept as-is, without any conversion. This is a default setting that is suitable for most cases. This type is suitable for simple metering like temperature, number of people in the room or stock price. Counter Suitable for continuous incrementing counters. The Counter-type data source assumes that the counter never decreases, except when a counter overflows. The series takes the overflow into account. The counter is stored as a per-second rate. When the counter overflows, series checks if the overflow happened at the 32bit or 64bit border and acts accordingly by adding an appropriate value to the result.
Derive Derive-type series will store the derivative of the line going from the last to the current value of the data source. This can be useful for gauges, for example, to measure the rate of people entering or leaving a room. Internally, derive works exactly like Counter but without overflow checks. So if your counter does not reset at 32 or 64 bit you might want to use Derive and combine it with a Minimum Value of 0.
Absolute Absolute series are used for counters which get reset upon reading. This is used for fast counters which tend to overflow. So instead of reading them normally you reset them after every read to make sure you have a maximum time available before the next overflow. Another usage is for things you count like number of messages since the last update.
|