I have some tests that alert me when disk space falls below... lets say 15 GB and this works perfectly: We get the mail.
- The test is done every 10 minutes
What I am trying to do is this:
When disk space falls below xyz (lets say 10 GB) send a mail every 30 minutes.
So... What I did is this: set up another send mail action with an expression to start the action in [advanced mode] with this expression:
(%Reply_Integer% < 10737418240) and ('%SimpleStatus%'=='DOWN') and (%Recurrences% mod 3==1)
If I remove the Reply_Integer part, it works...
10737418240 is from (10 GB * 1024MB * 1024KB * 1024b) right?
(I also tested with 999999999999 just to make sure)
In the help file I read
So I tried this: ('%Reply_Integer%' < '10737418240'), no luckfor the Reply field containing '12.01 Kb', %Reply_Integer% will return '12298'
And since I read this in the advance mode help:
I tried (%Reply_Integer% < 10737418240)((%Reply%>200) and (%Reply%<800))
but I can't get it to work.
Can you help me?