sum(set[])¶
Given an arbitrary number of series, returns a single series where each value is the sum of the values at that point in time in all of the input series.
sum([
sum(s("foo",{"host": "prod.web*"})),
sum(s("bar",{"host": "prod.web*"}))
])
To sum over time use the integrate(set[]) function.