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.get.misses", {"host": "prod.web*"})),
    sum(s("api.cache.get.hits", {"host": "prod.web*"}))
  ]),
  sum(s("api.cache.get.time", {"host": "prod.web*"}))
])