Files
grafana-zabbix/docs/sources/reference/functions.md
2016-11-17 21:36:26 +03:00

2.4 KiB

Functions reference

Transform

groupBy

groupBy(interval, function)

Takes each timeseries and consolidate its points falled in given interval into one point using function, which can be one of: avg, min, max, median.

Examples:

groupBy(10m, avg)
groupBy(1h, median)

scale

scale(factor)

Takes timeseries and multiplies each point by the given factor.

Examples:

scale(100)
scale(0.01)

delta

delta()

Convert absolute values to delta, for example, bits to bits/sec.

Aggregate

aggregateBy

aggregateBy(interval, function)

Takes all timeseries and consolidate all its points falled in given interval into one point using function, which can be one of: avg, min, max, median.

Examples:

aggregateBy(10m, avg)
aggregateBy(1h, median)

sumSeries

sumSeries()

This will add metrics together and return the sum at each datapoint. This method required interpolation of each timeseries so it may cause high CPU load. Try to combine it with groupBy() function to reduce load.

average

average(interval)

Deprecated, use aggregateBy(interval, avg) instead.

min

min(interval)

Deprecated, use aggregateBy(interval, min) instead.

max

max(interval)

Deprecated, use aggregateBy(interval, max) instead.

Filter

top

top(N, value)

Returns top N series, sorted by value, which can be one of: avg, min, max, median.

Examples:

top(10, avg)
top(5, max)

bottom

bottom(N, value)

Returns bottom N series, sorted by value, which can be one of: avg, min, max, median.

Examples:

bottom(5, avg)

trendValue

trendValue(valueType)

Specifying type of trend value returned by Zabbix when trends are used (avg, min or max).

Time

timeShift

timeShift(interval)

Draws the selected metrics shifted in time. If no sign is given, a minus sign ( - ) is implied which will shift the metric back in time. If a plus sign ( + ) is given, the metric will be shifted forward in time. Examples:

timeShift(24h)  - shift metric back in 2h hours
timeShift(-24h) - the same result as for timeShift(24h)
timeShift(+1d)  - shift metric forward in 1 day

Alias

setAlias

setAlias(alias)

Returns given alias instead of the metric name.

Examples:

setAlias(load)