divide(set[2])

Takes a set of precisely 2 series. Uses the first (set[0]) as the dividend and the second (set[1]) as the divisor to generate a quotient series (i.e. set[0]/set[1]) as the return value.

If at any point in time there are not exactly two points (a dividend and a divisor) nothing is included in the result for that point in time. If the input set to divide() does not contain exactly two series, the return value will be an empty set.

divide([
    sum(s("memory_used",{"host": "prod.web*"})),
    sum(s("memory_total",{"host": "prod.web*"}))])