When matching against the sample data in the table below, the highlighted time series would be
included in the aggregate result:
Name
nf.app
nf.node
Data
ssCpuUser
alerttest
i-0123
[1.0, 2.0, NaN]
ssCpuSystem
alerttest
i-0123
[3.0, 4.0, 5.0]
ssCpuUser
nccp
i-0abc
[8.0, 7.0, 6.0]
ssCpuSystem
nccp
i-0abc
[6.0, 7.0, 8.0]
numRequests
nccp
i-0abc
[1.0, 2.0, 4.0]
ssCpuUser
api
i-0456
[1.0, 2.0, 2.0]
The aggregation function will be applied independently for each group. In this example above
there are two matching values for the group by key name. This leads to a final result of:
Name
Data
ssCpuSystem
[9.0, 11.0, 13.0]
ssCpuUser
[10.0, 11.0, 8.0]
The name tag is included in the result set since it is used for the grouping.
Groups the time series from the input expression by a set of keys and applies an aggregation
to matches of the group. The keys used for this grouping must be a subset of keys from the
initial group by clause. Example: