fmul
Input Stack:
|
⇨ | Output Stack:
|
Compute a new time series where each interval has the value (a * b)
where a
and b
are the corresponding intervals in the input time series.
Example multiplying a constant:
Before | After |
name,sps,:eq | name,sps,:eq, 1024,:fmul |
Example multiplying two series:
Before | After |
name,requestLatency,:eq, :sum, name,requestsPerSecond,:eq, :max, (,name,),:by | name,requestLatency,:eq, :sum, name,requestsPerSecond,:eq, :max, (,name,),:by, :fmul |