stat-max
Input Stack: |
⇨ |
Output Stack: |
Represents the max,: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 a maximum value greater than 5k and less than 20k:
Before | After |
| |
name,sps,:eq,
(,nf.cluster,),:by
| name,sps,:eq,
(,nf.cluster,),:by,
:stat-max,
5e3,:gt,
:stat-max,
20e3,:lt,
:and,
:filter
|