stat-avg
Input Stack: |
⇨ |
Output Stack: |
Represents the avg,:stat
of the input time series when used with the filter
operation. The filter operator will automatically fill in the input when used so the user
does not need to repeat the input expression for the filtering criteria.
Example of restricting to lines that have an average value greater than 5k and less than 20k:
Before | After |
| |
name,sps,:eq,
(,nf.cluster,),:by
| name,sps,:eq,
(,nf.cluster,),:by,
:stat-avg,
5e3,:gt,
:stat-avg,
20e3,:lt,
:and,
:filter
|