Hi guys! I have a SAM app template (let it be "X") for several nodes, and every node can have it's own number of components (it can be arbitrary within one app).
For example:
Node1
App Node1.X
Node1.X.Component.1
Node1.X.Component.2
Node2
App Node2.X
Node2.X.Component.1
Node2.X.Component.2
Node2.X.Component.3
The Question is: how to make an alert with this conditions below?
Trigger condition: ALL of NodeN.X.components are in Critical state
In this case Node1 will be alerted and Node2 won't be:
Node1
App Node1.X
Node1.X.Component.1 Critical
Node1.X.Component.2 Critical
Node2
App Node2.X
Node2.X.Component.1 Up
Node2.X.Component.2 Critical
Node2.X.Component.3 Critical
Reset condition: AT LEAST ONE of NodeN.X.components is Up
In this case Node1 alert became resetted:
Node1
App Node1.X
Node1.X.Component.1 Critical
Node1.X.Component.2 Up
A little confused with condition wizard, any help would be appreciated.