Forge Home

reporter

Simplified recording & extracting of facts, system or ruby commands via Puppet reporting.

7,153 downloads

6,525 latest version

4.6 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.5 (latest)
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0 (deleted)
  • 0.0.1 (deleted)
released Oct 25th 2016
This version is compatible with:
  • , , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'robzr-reporter', '0.1.5'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add robzr-reporter
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install robzr-reporter --version 0.1.5

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

robzr/reporter — version 0.1.5 Oct 25th 2016

reporter

Table of Contents

  1. Description
  2. Setup - The basics of getting started with reporter
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module

Description

This module provides a simplified interface for recording & extracting of facts, static strings, system commands and ruby commands via Puppet reporting.

Creates a new resource type, Reporter, which can be used to run arbitrary shell or Ruby commands, facts, or static strings, which are then recorded in the native Puppet report, and can be extracted by the (soon to be included) reporter script, which allows for simple scanning for changes across time, aggregating output for multiple hosts, or querying hosts.

Setup

Setup Requirements

Since reporter includes a new resource type, it does require pluginsync to be enabled.

Beginning with reporter

Simply install the module using puppet module install robzr-reporter, and write at least one resource definition using the Reporter resource type.

To extract the reported output, you can manually examine the puppet reporting files, or use the soon-to-be included reporter utility.

Usage

After installing the reporter modules, you simply declare some reporter resources, like:

reporter {
  'passwd_sum':
    exec    => 'sum /etc/passwd';
  'ruby_version':
    format  => 'Ruby version is: %s',
    ruby    => 'RUBY_VERSION';
  'puppet_version':
    logonly => true,
    fact    => 'puppetversion';
  'static_message':
    echoonly => true,
    message  => 'Echo a static message';
  'processorcount': ;
}

Reference

Reporter provides a single resource type, which will be resolved on the agent, with the output reported (by default) to the Puppet log and into the Puppet report file for later extraction.

The default behavior registers a change for easy retrieval from a Puppet report file via the resource.events.desired_value property. This can be modified by using the logonly parameter (which does not register a change, but does log to the output), or via echoonly, which bypasses Puppet completely by outputting directly to STDOUT. The Puppet log level can be altered with the loglevel meta-parameter, in order to suppress output in normal runs.

A reporter resource is interpreted in one of four ways - as a Puppet parsed static message, fact, shell command or ruby command. These can be specified by using one of the parameters exec, fact, message, or ruby. The type parameter can also be used to explicitly label the type. If no type or parameter is used, the default is to interpret the resource name as a fact. The default behavior or reporter is to record a change, which is how the output is recorded.

  • exec => '/bin/command parameter1 ...' runs a shell command with normal shell parsing
  • exec => ['/bin/command', 'parameter1'] runs a command without shell parsing
  • fact => 'factname' resolves a fact
  • message => "Puppet Parsed String" records a string, as parsed by Puppet
  • ruby => '"StRiNg".downcase' runs arbitrary ruby commands
  • TODO: source => 'puppet:///modules/reporter/file.sh' downloads and runs executable

A few additional parameters are supplied in order to alter the behavior:

  • echoonly => true will not log or record a change; only prints to STDOUT
  • format => 'Output: %s' Output format in sprintf syntax
  • loglevel => info can be used to suppress notice output
  • logonly => true will not record a change, but does log
  • type => message forces a type, uses resource name for target
  • withpath => false will not prepend the resource path to log output

Examples

# Records facts (default behavior with no type specified)
reporter {
  ['operatingsystem', 'osfamily', 'puppetversion', 'swapfree']: ;
}

# Quietly records a directory listing from /etc
reporter {
  'ls_etc':
    loglevel => info,
    exec => 'ls -l /etc';
}

# Using Puppet's built in string parsing with a static message
reporter {
  'apache_vhostdir':
    message => "Directory: ${apache::params::vhostdir}";
}

# Bypass puppet reporting and logging
reporter {
  'dont_run':
    echoonly => true,
    message  => 'You should not be running this module!!!';
}

# Print output from a command as a warning log entry
reporter {
  'previous_login':
    format => '%s logged in before you.',
    loglevel => warning,
    logonly => true,
    exec  => 'last | head -2 | tail -1 | cut -f1 -d\ ';
}

See the tests/init.pp file for more examples.

Limitations

Only tested on POSIX (Linux, Mac) systems. Works with legacy Puppet and Ruby versions for maximum compatibility.

Development

Contact me via GitHub with requests, issues, or if you would like to contribute.

Release Notes/Contributors/Etc.

  • 0.1.0 - Initial stable release

TODO

  • Add ruby script and module for parsing Puppet report files to extract reports
  • Create a source parameter to serve executable files
  • Look into resource collectors for more sophisticated installation
  • Test & document using with notify/subscribe to chain events