OSM MON Module Installation Guide (Release THREE): Difference between revisions

From OSM Public Wiki
Jump to: navigation, search
Line 32: Line 32:
the plugins support.
the plugins support.
* The Gnocchi and Aodh plugins work from a common KafkaConsumer that checks for the appropriate topics and keys. To run this consumer:
* The Gnocchi and Aodh plugins work from a common KafkaConsumer that checks for the appropriate topics and keys. To run this consumer:
   lxc exec MON -- python /root/MON/osm_mon/core/message_bus/common_consumer
   lxc exec MON -- nohup python /root/MON/osm_mon/core/message_bus/common_consumer &
* To enable Aodh alarm notifications to be sent to SO:
* To enable Aodh alarm notifications to be sent to SO:
   lxc exec MON -- python /root/MON/osm_mon/plugins/OpenStack/Aodh/notifier.py
   lxc exec MON -- nohup python /root/MON/osm_mon/plugins/OpenStack/Aodh/notifier.py &
 
====CloudWatch Plugin====
====CloudWatch Plugin====
The MON container supports a CloudWatch plugin on installation.
The MON container supports a CloudWatch plugin on installation.

Revision as of 10:39, 12 December 2017

OSM MON Module

MON is a monitoring module for OSM. This module leverages the monitoring tool of the supported VIMs through MON's native plugin to send and receive metrics and alarms for a VNF.

MON Components

  • MON Core: contains Message Bus and Models
  • Plugins: contains plugin drivers for various VIM monitoring tools

Supported VIMs

  • OpenStack
  • VMWare
  • AWS

Supported Plugins

  • Gnocchi, Aodh(OpenStack)
  • vRealiseOps(VMWare)
  • CloudWatch(AWS)

Installation

For now, the MON Module installation is not done through OSM installation script. At the moment, the installation process requires few manual steps.

Requirements

  • LXC installed as mentioned in the OSM Release Three wiki
  • An existing OSM deployment

Creating a MON Container

To leverage the OSM MON Module features, clone the OSM MON [repo], run the install_mon.sh script for container creation and installation. This script will create a MON container, clone the MON repo inside the container and initiate the required plugins and web services.

Plugin Utilization

vROps Plugin

The vROPs plugin will automatically be installed after you have run the above installation script.

OpenStack Plugin

There are two OpenStack services supported within this module monitoring and alarming, which are supported by the Gnocchi and Aodh plugins respectively. These documents will also describe what alarming and monitoring functionality the plugins support.

  • The Gnocchi and Aodh plugins work from a common KafkaConsumer that checks for the appropriate topics and keys. To run this consumer:
 lxc exec MON -- nohup python /root/MON/osm_mon/core/message_bus/common_consumer &
  • To enable Aodh alarm notifications to be sent to SO:
 lxc exec MON -- nohup python /root/MON/osm_mon/plugins/OpenStack/Aodh/notifier.py &

CloudWatch Plugin

The MON container supports a CloudWatch plugin on installation.

Verification

  • Run the following command to verify the MON container creation.
lxc list | grep MON
  • To check the status of the Kafka service, run
lxc exec MON -- service kafka status