vitrage/doc/source/vitrage-use-cases.rst
Ifat Afek f6372636a6 split the documentation to two files: design and use cases
Change-Id: I516bd7554dcc3f166007f8d8829de860e22e0f83
2016-02-09 09:12:27 +00:00

2.9 KiB

Vitrage Use Cases

Add Nova Instance

image

  1. Nova Synchronizer plugin queries all Nova instances, or gets a message bus notification about a new Nova instance
  2. Nova Synchronizer plugin sends corresponding events to the Entity Queue
  3. The Entity Processor polls the Entity Queue and gets the new Nova Instance event
  4. The Entity Processor passes the event to the Nova Instance Transformer plugin, which returns a Vertex with the instance data, and an edge to the host Vertex in the graph
  5. The Entity Processor adds the new vertex and edge to the Graph

image

Add Aodh Alarm

image

  1. Aodh Synchronizer plugin queries all Aodh alarms, or gets a notification (TBD) about an Aodh alarm state change
  2. Aodh Synchronizer plugin sends corresponding events to the Entity Queue
  3. The Entity Processor polls the Entity Queue and gets the Aodh Alarm event, for example threshold alarm on Instance1 CPU
  4. The Entity Processor passes the event to the Aodh Alarm Transformer plugin, which returns a Vertex with the alarm data, and an edge to the instance Vertex
  5. The Entity Processor adds the new vertex and edge to the Graph

image

Nagios Alarm Causes Deduced Alarm

image

  1. (steps 1-5) Nagios Synchronizer plugin pushes a nagios alarm on a switch to the Entity Queue, which is converted by Nagios Transformer to a vertex and inserted to the Graph
  2. The Evaluator is notified about a new Vertex (Nagios switch alarm) that was added to the graph
  3. The Evaluator performs its calculations (TBD) and deduces that alarms should be triggered on every instance on every host attached to this switch
  4. The Evaluator pushes alarms to the Entity Queue
  5. The Evaluator asks the notifier to notify on these new alarms
  6. Aodh Notifier creates new alarm definitions in Aodh, and sets their states to "alarm"

image

Create RCA Insights

image

  1. The Evaluator is notified of a new alarm.
  2. The Evaluator evaluates the templates and the Graph (TBD), and decides that there is a root cause relation between two alarms. It adds a "causes" edge to the Graph

image

Note that in future versions the graph with RCA information may become more complex, for example:

image