Custom Formulas
Custom formulas let you perform calculations on event values before filtering or displaying them.
Last updated
Custom formulas let you perform calculations on event values before filtering or displaying them.
Last updated
(pow(1 + value / 1e18, 365) - 1) * 100
round(value / 1e18, 4)
value / 1e6 * 100
min(max(value / 1.549e18, 0), 1000)
abs(value - 1e18) / 1e18 * 100
floor(value / 1e18 / 100) * 100
ceil(value / 1e18 / 1000) * 1000Formula: (exp(value × 3.154e+7) − 1) * 100 > 10
Result: Alert only if the annual rate is more then 10%Formula: (exp(value × 3.154e+7) − 1) * 100
Result: "Rate: 10%" instead of "Rate: some crazy number"