Reference to the min() function

Summary

min(<tsExpression1>, <tsExpression2>)

min(<tsExpression>[, metrics|sources|sourceTags|pointTags|<pointTagKey>])

min(<hsExpression>)

You can use min() with time series and with histograms.

Time series
comparison function
Returns the lower of the two values in tsExpression1 and tsExpression2.
Time series
aggregation function
Returns the lowest value across the set of time series described by tsExpression. The results might be computed from real reported values and interpolated values. Use rawmin() if you don’t need interpolation.
Histogram
conversion function
Returns time series that consist of the lowest value from each histogram distribution described by the hsExpression.

Parameters

Time-Series Comparison Function

ParameterDescription
tsExpression1 Expression describing the time series to use as a threshold value for comparison.
tsExpression2 Expression describing the time series to be compared against the threshold value.  

Time-Series Aggregation Function

ParameterDescription
tsExpression Expression describing the set of time series to return minimums for.
metrics|sources|sourceTags|pointTags|<pointTagKey> Optional group by parameter for organizing the time series into subgroups and then returning the minimum for each subgroup. Use one or more parameters to group by metric names, source names, source tag names, point tag names, values for a particular point tag key, or any combination of these items. Specify point tag keys by name.

Histogram Conversion Function

ParameterDescription
hsExpression Expression describing the histogram series to obtain minimum values from.

Description

You can use min():

  • With time series as a comparison function or as an aggregation function.
  • With histogram series as a conversion function.

Time-Series Comparison Function

The min() comparison function lets you display all data points below a desired threshold, and assigns the threshold value to all data points above the threshold.

Time-Series Aggregation Function

The min() aggregation function finds the lowest (minimum) data value at each moment in time, across the time series that are represented by the expression.

By default, min() produces a single series of minimums by aggregating values across all time series. You can optionally group the time series based on one or more characteristics, and obtain a separate series of minimums for each group.

If any time series has data gaps, min() fills them in by interpolation whenever possible.

Grouping

The min() aggregation function returns a single series of results by default. You can include a group by parameter to obtain separate minimums for groups of time series that share common metric names, source names, source tags, point tags, or values for a particular point tag key. The function returns a separate series of results corresponding to each group.

You can specify multiple ‘group by’ parameters to group the time series based on multiple characteristics. For example, min(ts("cpu.cpu*"), metrics, Customer) first groups by metric names, and then groups by the values of the Customer point tag.

Interpolation

If any time series has gaps in its data, the query engine attempts to fill these gaps with interpolated values before applying the function. A value can be interpolated into a time series only if at least one other time series reports a real data value at the same moment in time.

Within a given time series, an interpolated value is calculated from two real reported values on either side of it. Sometimes interpolation is not possible–for example, when a new value has not been reported yet in a live-view chart. In this case, the query engine finds the last known reported value in the series, and assigns it to any subsequent moment in time for which a real reported data value is present in some other time series. We use the last known reported value only if interpolation can’t occur and if the last known reported value has been reported within the last 15% of the query time in the chart window.

You can use rawmin() to suppress interpolation. See Standard Versus Raw Aggregation Functions.

Histogram Conversion Function

The min() histogram conversion function returns the lowest data value from each distribution of each histogram series that is represented by the expression. The minimum values for a given histogram series are returned as a separate time series that contains a data point corresponding to each input distribution.

min() is a histogram conversion function because it takes histogram distributions as input, and returns time series. You can therefore use a histogram conversion function as a tsExpression parameter in a time series query function.

Examples

Time-Series Comparison Function

The following example from our built-in Interactive Query Language Tutorial illustrates the use of min(). First, let’s look at the query by itself, with a line added – we’ll want to show all values that are less than 200.

ts min before

When we apply min, only values that are less than 200 are displayed (in addition, the display now shows 200 as the top value)

ts min

Time-Series Aggregation Function

The following example shows min() without an expression to compare against. For this example, we can group the results.

ts min aggr

Histogram Conversion Function

In the following example, the blue line shows the result of applying min() to an hsExpression. (The red line is the median, shown for comparison.)

hs min

Note: min() returns a separate time series for each input histogram series. In this example, the hsExpression represents a single histogram series, so the result is a single time series. (In contrast, when min() is used as an aggregation function with a tsExpression, a single returned time series might be the result of combining multiple input time series.)

Caveats

Sometimes it’s best to use min() with align(). See Bucketing with align().

Using rawmin() instead of min() can significantly improve query performance because rawmin() does not perform interpolation.