Hello,
I have this query to alert me when percentage_q_full reaches greater than certain number
eval alert=case((PERCENT_Q_FULL>90), "Critical", (PERCENT_Q_FULL>80), "Warning", true(), "N/A")
but all the column values of alert shows as N/A because PERCENT_Q_FULL has values in percentage. These values are being extracted using multikv.
PERCENT_Q_FULL
95.00%
3.12%
5.13%
0.00%
100.00%
How do I convert it so that alert column shows me critical vs warning ?
Thank you.
↧