RETIRED, OpenStack Monasca Puppet Module
Go to file
Brad Klein 27845d7f19 Add config of metadata for ovs plugin
Change-Id: I206247eccb952f5ae528843d3f50035fc72d6ff0
2016-10-17 14:36:14 -06:00
files Include vertica alarms state history table in stats update 2016-09-20 10:30:06 -06:00
lib/puppet Reflect provider change in puppet-openstacklib 2015-08-19 12:16:57 +02:00
manifests Add config of metadata for ovs plugin 2016-10-17 14:36:14 -06:00
spec Add config of metadata for ovs plugin 2016-10-17 14:36:14 -06:00
templates Add config of metadata for ovs plugin 2016-10-17 14:36:14 -06:00
tests Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-02-03 14:25:44 -07:00
.fixtures.yml Reflect provider change in puppet-openstacklib 2015-08-19 12:16:57 +02:00
.gitignore Using puppet-openstack standard gitignore 2016-07-28 16:38:38 -03:00
.gitreview Update .gitreview file for project rename 2015-06-30 01:07:07 +00:00
Gemfile Gemfile: rely on puppet-openstack_spec_helper for dependencies 2016-04-19 14:32:09 -03:00
LICENSE Changes to publish puppet-monasca to stackforge 2014-11-14 14:41:49 -07:00
README.md Add config of metadata for ovs plugin 2016-10-17 14:36:14 -06:00
Rakefile Use puppet-openstack_spec_helper for Rakefile & spec_helper_acceptance 2016-02-03 14:25:44 -07:00
metadata.json Fix missing dependencies 2016-07-22 16:29:15 -03:00

README.md

puppet-monasca

Table of Contents

  1. Overview - What is the monasca module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with monasca
  4. Implementation - An under-the-hood peek at what the module is doing
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
  7. Contributors - Those with commits

Overview

The monasca module is a part of OpenStack, and is meant to assist with the installation and configuration of monasca itself, and its dependent services (mentioned below).

Module Description

Setup

What the monasca module affects:

  • monasca, monitoring as a service for OpenStack.
  • storm, Apache's distributed realtime computational system.
  • kafka, Apache's publish-subscribe messaging system.
  • influxdb, a stand-alone open-source distributes time series database.

Implementation

monasca

monasca is a combination of Puppet manifest that configures the monasca client and server configuration, as well as monasca's dependent services.

Types

monasca_config

The monasca_config provider is a child of the ini_setting provider. It allows one to write an entry in the /etc/monasca/monasca.conf file.

monasca_config { 'DEFAULT/debug' :
  value => true,
}

This will write debug=true in the [DEFAULT] section.

name

Section/setting name to manage from monasca.conf

value

The value of the setting to be defined.

secret

Whether to hide the value from Puppet logs. Defaults to false.

ensure_absent_val

If value is equal to ensure_absent_val then the resource will behave as if ensure => absent was specified. Defaults to <SERVICE DEFAULT>

agent_config

The agent_config provider is a children of the ini_setting provider. It allows one to write an entry in the /etc/monasca/agent/agent.conf file.

agent_config { 'DEFAULT/verbose' :
  value => true,
}

This will write verbose=true in the [DEFAULT] section.

name

Section/setting name to manage from agent.conf

value

The value of the setting to be defined.

secret

Whether to hide the value from Puppet logs. Defaults to false.

ensure_absent_val

If value is equal to ensure_absent_val then the resource will behave as if ensure => absent was specified. Defaults to <SERVICE DEFAULT>

Limitations

This module currently only supports debian based installs.

Development

Developer documentation for the entire puppet-openstack project.

Contributors