Difference between revisions of "Event"
From Veloopti Help
m (→Event processing) |
m |
||
Line 6: | Line 6: | ||
The flow of an event into Veloopti is described as follows | The flow of an event into Veloopti is described as follows | ||
− | IF | + | |
− | + | IF event matches [[Outage|outage]] rule THEN | |
− | + | IF outage rule = suppress THEN | |
− | + | Suppress the event | |
− | + | EXIT | |
− | + | ELSE IF outage rule = auto close THEN | |
− | + | Close the event | |
+ | EXIT | ||
+ | END IF | ||
END IF | END IF | ||
− | + | ||
− | + | IF event matches one or more storm rules THEN | |
− | IF | + | Perform the storm rule(s) |
− | Perform the storm rule | ||
− | |||
− | |||
− | |||
− | |||
− | |||
END IF | END IF | ||
+ | |||
+ | IF event matches an existing event with the same severity THEN | ||
+ | Change the severity to match the new one | ||
+ | Increment the [[Event_lifecycle#Previous_events_and_duplicates|duplicate count]] by one | ||
+ | ELSE IF event matches an existing event THEN | ||
+ | Increment the [[Event_lifecycle#Previous_events_and_duplicates|duplicate count]] by one | ||
+ | ELSE | ||
+ | Create the event | ||
+ | IF the event has a notification THEN | ||
+ | Perform the notification | ||
+ | END IF | ||
+ | END IF | ||
[[Category:Events]] | [[Category:Events]] |
Revision as of 23:44, 31 July 2017
1 Overview
According to ITIL events can can be defined as: any detectable or discernible occurrence that has significance for the management of the IT Infrastructure or the delivery of IT service and evaluation of the impact a deviation might cause to the services.
2 Event processing
The flow of an event into Veloopti is described as follows
IF event matches outage rule THEN IF outage rule = suppress THEN Suppress the event EXIT ELSE IF outage rule = auto close THEN Close the event EXIT END IF END IF IF event matches one or more storm rules THEN Perform the storm rule(s) END IF IF event matches an existing event with the same severity THEN Change the severity to match the new one Increment the duplicate count by one ELSE IF event matches an existing event THEN Increment the duplicate count by one ELSE Create the event IF the event has a notification THEN Perform the notification END IF END IF