summaryrefslogtreecommitdiffstats
path: root/docs/release/configguide
diff options
context:
space:
mode:
authorIfat Afek <ifat.afek@nokia.com>2017-02-16 18:43:29 +0200
committerIfat Afek <ifat.afek@nokia.com>2017-03-12 17:38:35 +0200
commit4e4c3f641110246463516c59b99ae7986e14fa7d (patch)
tree54c3ba04dfe74fd4bbc92aad3b6e6c804a97c4f7 /docs/release/configguide
parentefd6755aaa7ad0e7e2d105c4e75a3123cb48ad33 (diff)
Add installation and configuration instructions for Vitrage as the Inspector.
Change-Id: Ibe0bdf20872ae87c6e88263bba6b3a0e21c74940 Signed-off-by: Ifat Afek <ifat.afek@nokia.com>
Diffstat (limited to 'docs/release/configguide')
-rw-r--r--docs/release/configguide/feature.configuration.rst47
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/release/configguide/feature.configuration.rst b/docs/release/configguide/feature.configuration.rst
index 3ddc409c..ddd9c7c1 100644
--- a/docs/release/configguide/feature.configuration.rst
+++ b/docs/release/configguide/feature.configuration.rst
@@ -78,6 +78,53 @@ that host from ACTIVE to ERROR state.
host_down(host),
active_instance_in_host(vmid, host)'
+**Vitrage**
+
+OpenStack `Vitrage`_ is an RCA (Root Cause Analysis) service for organizing,
+analyzing and expanding OpenStack alarms & events. Vitrage implements Doctor
+Inspector, as it receives a notification that a host is down and calls Nova
+force-down API. In addition, it raises alarms on the instances running on this
+host.
+
+.. _Vitrage: https://wiki.openstack.org/wiki/Vitrage
+
+Vitrage is not deployed by OPNFV installers yet. It can be installed either on
+top of a devstack environment, or on top of a real OpenStack environment. See
+`Vitrage Installation`_
+
+.. _`Vitrage Installation`: https://docs.openstack.org/developer/vitrage/installation-and-configuration.html
+
+Doctor SB API and a Doctor datasource were implemented in Vitrage in the Ocata
+release. The Doctor datasource is enabled by default.
+
+After Vitrage is installed and configured, there is a need to configure it to
+support the Doctor use case. This can be done in a few steps:
+
+1. Make sure that 'aodh' and 'doctor' are included in the list of datasource
+ types in /etc/vitrage/vitrage.conf:
+
+.. code-block:: bash
+
+ [datasources]
+ types = aodh,doctor,nova.host,nova.instance,nova.zone,static,cinder.volume,neutron.network,neutron.port,heat.stack
+
+2. Enable the Vitrage Nova notifier. Set the following line in
+ /etc/vitrage/vitrage.conf:
+
+.. code-block:: bash
+
+ [DEFAULT]
+ notifiers = nova
+
+3. Add a template that is responsible to call Nova force-down if Vitrage
+ receives a 'compute.host.down' alarm. Copy `template`_ and place it under
+ /etc/vitrage/templates
+
+.. _template: https://github.com/openstack/vitrage/blob/master/etc/vitrage/templates.sample/host_down_scenarios.yaml
+
+4. Restart the vitrage-graph and vitrage-notifier services
+
+
Doctor Monitor
--------------