Difference between revisions of "Event"

From Veloopti Help
Jump to: navigation, search
m (Event processing)
m
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[Welcome_to_Veloopti_help|Home]] > [[:Category:An Overview|An Overview]] >  [[:Category:Concepts|Concepts]] > [[Event|Events]]
 +
----
 +
 
== Overview ==
 
== 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''.
 +
 +
== Where events come from ==
 +
Events come into Veloopti in the following ways:
 +
 +
# A policy on a Veloopti Agent detects a breach;
 +
## A logfile policy detects a match;
 +
## A SNMP trap is received that matches;
 +
# A metric threshold is violated;
 +
# An event storm rule detect a threshold violation and generates an event; ''and''
 +
# It is injected by the Veloopti agent Application Programming Interface (API)
  
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''.
+
=== A policy on a Veloopti Agent detects a breach ===
 +
Policies that run on a Veloopti Agent are able to send an event to Veloopti.
 +
 
 +
==== A logfile policy detects a match ====
 +
 
 +
==== A SNMP trap is received that matches ====
 +
 
 +
=== A metric threshold is violated ===
 +
Metrics that are sent by the Veloopti Agent are able to have a threshold set on it through the [[Threshold_engine|Threshold engine]]
 +
 
 +
=== It is injected by the Veloopti agent Application Programming Interface (API) ===
 +
 
 +
The Veloopti agent is able to receive events through the inbound API method.
 +
 
 +
=== An event storm rule detect a threshold violation and generates an event; ===
  
== Event processing ==
+
== Agent event processing ==
 +
The Veloopti agent will process events as they are received in a [https://en.wikipedia.org/wiki/FIFO_(computing_and_electronics) first in first out] basis. This means that the oldest events are processed first before newer ones. This is to help keep the storm detection and duplication occurrence in order.
  
The flow of an event into Veloopti is described as follows
+
The Veloopti agent is limited to sending one event per second to the Veloopti servers.
IF the event is in in [[Outage|outage]] THEN
 
    End
 
ELSE
 
    IF the event is a duplicate THEN
 
          Increment the [[Event_lifecycle#Previous_events_and_duplicates|duplicate count]] by one
 
    ELSE
 
    The event then enters Veloopti and starts its [[Event lifecycle|event lifecycle]]n
 
END IF
 
 
 
IF the event matches a storm rule THEN
 
    Perform the storm rule
 
END IF
 
 
 
IF the event has a notification THEN
 
    Perform the notification
 
END IF
 
  
 +
== Event properties ==
  
[[Category:Events]]
+
[[Category:Concepts]] [[Category:Events]]

Latest revision as of 17:53, 13 December 2018

Home > An Overview > Concepts > Events


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 Where events come from

Events come into Veloopti in the following ways:

  1. A policy on a Veloopti Agent detects a breach;
    1. A logfile policy detects a match;
    2. A SNMP trap is received that matches;
  2. A metric threshold is violated;
  3. An event storm rule detect a threshold violation and generates an event; and
  4. It is injected by the Veloopti agent Application Programming Interface (API)

2.1 A policy on a Veloopti Agent detects a breach

Policies that run on a Veloopti Agent are able to send an event to Veloopti.

2.1.1 A logfile policy detects a match

2.1.2 A SNMP trap is received that matches

2.2 A metric threshold is violated

Metrics that are sent by the Veloopti Agent are able to have a threshold set on it through the Threshold engine

2.3 It is injected by the Veloopti agent Application Programming Interface (API)

The Veloopti agent is able to receive events through the inbound API method.

2.4 An event storm rule detect a threshold violation and generates an event;

3 Agent event processing

The Veloopti agent will process events as they are received in a first in first out basis. This means that the oldest events are processed first before newer ones. This is to help keep the storm detection and duplication occurrence in order.

The Veloopti agent is limited to sending one event per second to the Veloopti servers.

4 Event properties