Alex,
I use RECURRENCES==2 in my "bad status" action profile but i just cannot figure out how to get the "Good status" action only to activate when and only when "Bad Status" RECURRENCES==2.
In other words, I would like the "Action Depends on a bad one" tick box enabled when I use Advanced Mode in the Bad Status Action.
Action Depends on "bad" one when using Advanced Mo
I have done the following: created 2 "Bad Status Actions"
1. Start when 2 repeat 1 (this will generate the initial "email to advise of link down.)
2. Advanced Mode ("SimpleStatus" == DOWN) and (%RECURRENCES% MOD 12==1)
This then allows me to select 1 (above) as the "Action depends on a bad one" within the "Good Status Action".
Only problem is I can't do maths very well and I am trying to figure out the correct MOD x==y (i.e. x 7 y values) to have email sent every 15 recurrences.
Any help would be appreciated
1. Start when 2 repeat 1 (this will generate the initial "email to advise of link down.)
2. Advanced Mode ("SimpleStatus" == DOWN) and (%RECURRENCES% MOD 12==1)
This then allows me to select 1 (above) as the "Action depends on a bad one" within the "Good Status Action".
Only problem is I can't do maths very well and I am trying to figure out the correct MOD x==y (i.e. x 7 y values) to have email sent every 15 recurrences.
Any help would be appreciated
Good idea.I have done the following: created 2 "Bad Status Actions"
If you want to start action on 2nd, 17th, 32nd... iterations, use expression (%RECURRENCES% MOD 15==2)to have email sent every 15 recurrences
If you want to skip 1st alert and start action on 17th, 32st, 47nd... iterations, use expression (%RECURRENCES% MOD 15==2) and (%RECURRENCES% > 15)
Regards
Alex