RETIRED, Fuel plugin to collect Logging Monitoring and Alerting metrics
Go to file
Simon Pasquier 3f0ed0b289 Update README.md
The plugin format is now RPM.

Change-Id: Iea6d81d55ba590fc809df5c39876a04f66982139
2015-03-25 12:09:57 +01:00
contrib Add contrib/ directory 2015-02-26 15:53:21 +01:00
deployment_scripts/puppet Fix Puppet syntax for puppet-lint 2015-03-25 12:03:46 +01:00
doc Collect logs from Open vSwitch 2015-03-24 18:14:31 +01:00
repositories Initial import of the LMA collector plugin 2015-02-27 14:16:49 +01:00
specs Add blueprint for the LMA collector Fuel plugin 2015-02-13 14:54:23 +01:00
.gitreview Added .gitreview 2015-02-12 08:27:40 +00:00
LICENSE Initial import of the LMA collector plugin 2015-02-27 14:16:49 +01:00
README.md Update README.md 2015-03-25 12:09:57 +01:00
environment_config.yaml Integrate collectd into the LMA collector 2015-03-13 12:01:47 +01:00
metadata.yaml Remove unused releases in metadata.yaml 2015-03-24 17:13:58 +01:00
pre_build_hook Add collectd dependencies 2015-03-10 13:11:08 +01:00
tasks.yaml Switch to fuel-plugin-builder 2.0 2015-03-17 09:10:54 +00:00

README.md

Logging, Monitoring and Alerting (LMA) Collector Plugin for Fuel

Overview

The Logging, Monitoring & Alerting (LMA) collector is a service running on each OpenStack node that collects logs and notifications. Those data are sent to an ElasticSearch server for diagnostic, troubleshooting and alerting purposes.

Requirements

Requirement Version/Comment
Mirantis OpenStack compatility 6.1 or higher
A running ElasticSearch server 1.4 or higher, the RESTful API must be enabled over port 9200

Limitations

The plugin is only compatible with OpenStack environments deployed with Neutron for networking.

Installation Guide

Prior to installing the LMA Collector Plugin, you may want to install ElasticSearch and Kibana. To install ElasticSearch and Kibana automatically using Fuel, you can refer to the ElasticSearch-Kibana Fuel Plugin .

You can install ElasticSearch and Kibana outside of Fuel as long as your installation meets the LMA Collector plugin's requirements defined above.

LMA collector plugin installation

To install the LMA Collector plugin, follow these steps:

  1. Download the plugin from the Fuel Plugins Catalog.

  2. Copy the plugin file to the Fuel Master node.

    scp lma_collector-6.1-6.1.0-0.noarch.rpm root@<Fuel Master node IP address>:
    
  3. Install the plugin using the fuel command line:

    fuel plugins --install lma_collector-6.1-6.1.0-0.noarch.rpm
    
  4. Verify that the plugin is installed correctly:

    fuel plugins --list
    

Please refer to the Fuel Plugins wiki if you want to build the plugin by yourself, version 2.0.0 (or higher) of the Fuel Plugin Builder is required.

User Guide

LMA collector plugin configuration

  1. Create a new environment with the Fuel UI wizard.
  2. Click on the Settings tab of the Fuel web UI.
  3. Scroll down the page, select the LMA collector plugin checkbox and fill-in the required fields.

Exploring the data

Refer to the ElasticSearch/Kibana plugin for exploring and visualizing the collected data.

Troubleshooting

If you see no data in the ElasticSearch server, check the following:

  1. The LMA collector service is running

    # On CentOS
    /etc/init.d/lma_collector status
    # On Ubuntu
    status lma_collector
    
  2. Look for errors in the LMA collector log file (located at /var/log/lma_collector.log) on the different nodes.

  3. Nodes are able to connect to the ElasticSearch server on port 9200.

Known issues

None

Release Notes

6.1.0

  • Initial release of the plugin.

Contributors