I'm looking to setup an advanced mode action (send email) when a system has been down for 15 minutes. I am currently pinging all systems every 30 seconds, so, should I count the number of consecutive recurrences or is there someway to explicitly define "15 minutes"?
I'm using Hostmon version 6.82. Thanks in advance.
Advanced Action syntax
I need to do something similar in dependency advance mode but having trouble.
In dependency advance mode I use this to get status of another test.
('%::Some Random Test Name::Status%'=='Bad')
But now I want to add the other tests recurrences with the status.
Things I have tried that have not worked are.
In dependency advance mode I use this to get status of another test.
('%::Some Random Test Name::Status%'=='Bad')
But now I want to add the other tests recurrences with the status.
Things I have tried that have not worked are.
('%::Some Random Test Name::Status%'=='Bad' And %Recurrences%>=5)
('%::Some Random Test Name::Status%'=='Bad') And ('%::Some Random Test Name::Recurrences%>=5)
1st expression invalid.
In 2nd expression you forgot 1 quotation mark (actually you may remove 1 quotation mark or add another)
('%::Some Random Test Name::Status%'=='Bad') And (%::Some Random Test Name::Recurrences%>=5)
or
('%::Some Random Test Name::Status%'=='Bad') And ('%::Some Random Test Name::Recurrences%'>=5)
Regards
Alex
In 2nd expression you forgot 1 quotation mark (actually you may remove 1 quotation mark or add another)
('%::Some Random Test Name::Status%'=='Bad') And (%::Some Random Test Name::Recurrences%>=5)
or
('%::Some Random Test Name::Status%'=='Bad') And ('%::Some Random Test Name::Recurrences%'>=5)
Regards
Alex