PDA

View Full Version : Automatic next severity level


woisch
03-08-2009, 17:01
Hi,

is it possible to increase automaticaly the severity level?

For example:

first try:
Ping to host not successfully

second try
Ping to host not successfully

And now increase the severity to avarage or high?

Thanks for help.
regards
woisch

Calimero
03-08-2009, 17:38
Write two triggers ?
- icmpping.last(0)#1 goes on with severity average after last ping failed
- icmpping.count(1,#3)=0 goes on with severity high after last three pings failed

Side effect is that you can get notified twice depending on how actions are written.

Alexei
04-08-2009, 08:44
Side effect is that you can get notified twice depending on how actions are written.
Unless you have a dependency defined for these two triggers of course.

woisch
05-08-2009, 08:51
Thx, i`ll test it.