multiply(set[])

Given an arbitrary number of series, returns a single series where each value is the product of multiplying the values at that point in time in all of the input series.

multiply([
  divide([
    sum(s("api.cache.collectd.get.misses", "*")),
    sum(s("api.cache.collectd.get.hits", "*"))
  ]),
  sum(s("api.cache.collectd.get.time", "*"))
])