Forge Home

monyog

Install and configure MONyog

7,077 downloads

7,077 latest version

3.9 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.0 (latest)
released Aug 15th 2016

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'jgazeley-monyog', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jgazeley-monyog
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jgazeley-monyog --version 0.1.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

jgazeley/monyog — version 0.1.0 Aug 15th 2016

monyog

Table of Contents

  1. Overview
  2. Usage - Configuration options and additional functionality
  3. Reference - An under-the-hood peek at what the module is doing and how
  4. Limitations - OS compatibility, etc.
  5. Development - Guide for contributing to the module

Overview

This module installs MONyog from a local package and gives it a base config to allow it to start up. You will then need to configure it via the web GUI.

Download the MONyog package from their website and place the package somewhere where it can be accessed - usually in a local package repo. Specify the path in the package parameter.

A one-maybe-two sentence summary of what the module does/what problem it solves. This is your 30 second elevator pitch for your module. Consider including OS/Puppet version it works with.

Usage

This class accepts several parameters, shown here with their default values.

class { 'monyog': {
  package  => 'http://repo.example.com/MONyog-6.5.4-0.x86_64.rpm',
  basedir  => '/usr/local/MONyog',
  inifile  => "${basedir}/MONyog.ini",
  port     => 5555,
  firewall => false,
}

package

Path to the MONyog package. You must download this from MONyog yourself and place it in a location where it can be accessed. Acceptable locations are documented.

basedir

Base install path of the RPM. Setting this parameter does not change where the RPM is installed - it must be set to point where the RPM installs. By default this is /usr/local/MONyog and you shouldn't need to set it unless you've rolled your own RPM.

inifile

Default location of MONyog.ini. By default this is in /usr/local/MONyog and you shouldn't need to set it unless you've rolled your own RPM.

port

TCP port that MONyog listens on. By default this is 5555 but you may prefer to set it to the standard web port 80.

firewall

Whether to manage the firewall rule using puppetlabs/firewall. Defaults to false so we don't accidentally clobber existing firewall config.

Reference

Here, list the classes, types, providers, facts, etc contained in your module. This section should include all of the under-the-hood workings of your module so people know what the module is touching on their system but don't need to mess with things. (We are working on automating this section!)

Limitations

The initial version of this module only supports systems which use the RPM package manager - i.e. Red Hat and compatible systems. Debian support is on the roadmap.

Development

Since your module is awesome, other users will want to play with it. Let them know what the ground rules for contributing are.

Release Notes/Contributors/Etc Optional

If you aren't using changelog, put your release notes here (though you should consider using changelog). You may also add any additional sections you feel are necessary or important to include here. Please use the ## header.