Skip to content

stat-min

Input Stack:
Output Stack:
TimeSeriesExpr

Filter helper that represents the minimum statistic of the input time series. This is a placeholder that gets automatically replaced with min,:stat when used with :filter. It allows filtering based on the minimum value of each time series without having to duplicate the input expression.

Examples

Filtering series by minimum value range:

BeforeAfter
name,sps,:eq,
(,nf.cluster,),:by
name,sps,:eq,
(,nf.cluster,),:by,
:stat-min,
5e3,:gt,
:stat-min,
20e3,:lt,
:and,
:filter

This filters to show only time series where the minimum value is between 5,000 and 20,000.

  • :stat - Base statistics operation (stat-min represents min,:stat)
  • :filter - Filtering operation that uses stat helpers
  • :stat-max - Filter by maximum values
  • :stat-avg - Filter by average values