class Aggregation_Reducer

A Reducer describes how to aggregate data points from multiple time series into a single time series.

Protobuf enum Google\Monitoring\V3\Aggregation\Reducer

Constants

REDUCE_NONE

No cross-time series reduction. The output of the aligner is returned.

Generated from protobuf enum REDUCE_NONE = 0;

REDUCE_MEAN

Reduce by computing the mean across time series for each alignment period. This reducer is valid for delta and gauge metrics with numeric or distribution values. The value type of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE].

Generated from protobuf enum REDUCE_MEAN = 1;

REDUCE_MIN

Reduce by computing the minimum across time series for each alignment period. This reducer is valid for delta and gauge metrics with numeric values. The value type of the output is the same as the value type of the input.

Generated from protobuf enum REDUCE_MIN = 2;

REDUCE_MAX

Reduce by computing the maximum across time series for each alignment period. This reducer is valid for delta and gauge metrics with numeric values. The value type of the output is the same as the value type of the input.

Generated from protobuf enum REDUCE_MAX = 3;

REDUCE_SUM

Reduce by computing the sum across time series for each alignment period. This reducer is valid for delta and gauge metrics with numeric and distribution values. The value type of the output is the same as the value type of the input.

Generated from protobuf enum REDUCE_SUM = 4;

REDUCE_STDDEV

Reduce by computing the standard deviation across time series for each alignment period. This reducer is valid for delta and gauge metrics with numeric or distribution values. The value type of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE].

Generated from protobuf enum REDUCE_STDDEV = 5;

REDUCE_COUNT

Reduce by computing the count of data points across time series for each alignment period. This reducer is valid for delta and gauge metrics of numeric, Boolean, distribution, and string value type. The value type of the output is [INT64][google.api.MetricDescriptor.ValueType.INT64].

Generated from protobuf enum REDUCE_COUNT = 6;

REDUCE_COUNT_TRUE

Reduce by computing the count of True-valued data points across time series for each alignment period. This reducer is valid for delta and gauge metrics of Boolean value type. The value type of the output is [INT64][google.api.MetricDescriptor.ValueType.INT64].

Generated from protobuf enum REDUCE_COUNT_TRUE = 7;

REDUCE_FRACTION_TRUE

Reduce by computing the fraction of True-valued data points across time series for each alignment period. This reducer is valid for delta and gauge metrics of Boolean value type. The output value is in the range [0, 1] and has value type [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE].

Generated from protobuf enum REDUCE_FRACTION_TRUE = 8;

REDUCE_PERCENTILE_99

Reduce by computing 99th percentile of data points across time series for each alignment period. This reducer is valid for gauge and delta metrics of numeric and distribution type. The value of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE]

Generated from protobuf enum REDUCE_PERCENTILE_99 = 9;

REDUCE_PERCENTILE_95

Reduce by computing 95th percentile of data points across time series for each alignment period. This reducer is valid for gauge and delta metrics of numeric and distribution type. The value of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE]

Generated from protobuf enum REDUCE_PERCENTILE_95 = 10;

REDUCE_PERCENTILE_50

Reduce by computing 50th percentile of data points across time series for each alignment period. This reducer is valid for gauge and delta metrics of numeric and distribution type. The value of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE]

Generated from protobuf enum REDUCE_PERCENTILE_50 = 11;

REDUCE_PERCENTILE_05

Reduce by computing 5th percentile of data points across time series for each alignment period. This reducer is valid for gauge and delta metrics of numeric and distribution type. The value of the output is [DOUBLE][google.api.MetricDescriptor.ValueType.DOUBLE]

Generated from protobuf enum REDUCE_PERCENTILE_05 = 12;