Forge Home

copperegg

Install and configure CopperEgg collector; manage RevealUptime probes.

11,517 downloads

9,279 latest version

0.1 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

  • 1.0.7 (latest)
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Mar 8th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'CopperEgg-copperegg', '1.0.7'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add CopperEgg-copperegg
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install CopperEgg-copperegg --version 1.0.7

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

CopperEgg/copperegg — version 1.0.7 Mar 8th 2013

copperegg - CopperEgg collector

Copyright 2012,2013 CopperEgg Corporation

This Puppet module will install the CopperEgg collector on your servers.

It also contains a simple type and provider for installing and managing RevealUptime Probes.

Installation

  1. Sign up for an account at https://copperegg.com/revealcloud-free-signup/.
  2. You can obtain and install this module from Puppet Forge: 'puppet module install CopperEgg-copperegg'. Alternatively, clone this Github package, and copy the release tarball to your puppet master. Then install the release package as follows: 'puppet module install /path-to-tarball/CopperEgg-copperegg-1.0.3.tar.gz'.
  3. Include the copperegg class to nodes that you want to monitor, e.g., in your site.pp file.
  4. Login to CopperEgg and you should see your systems being monitored within 20-30 seconds.

Recent Changes

1.0.7 Released on March 8, 2013

  • improved error reporting during installation

1.0.6 Released on March 1, 2013 3:02 PM CST

  • removed two includes that did not belong.

1.0.5 Released on March 1, 2013

  • updated the copperegg class to a parameterized class The default parameters are those declared in the params.pp manifest . You may now override these defaults on a per-node basis. -Usage examples You can still declare the copperegg class in your node definition as before: include copperegg To ovverride the defaults in your node definition: class{'copperegg': tags => 'tag1,tag2' }

1.0.4 Released on February 13,2013

  • commented-out the enable command in init.pp
  • this was done to eliminate an interaction with our init script, which enables the service during install.

1.0.3 Released on February 10,2013

  • Fixed a parameter-passing regression in 1.0.2. The issue manifested itself when certain of the parameters specified in params.pp were empty strings. Now the Tags, Label, Proxy and UUID will function as expected.
  • Also in this release, I have begun including the release tarball (e.g., CopperEgg-copperegg-1.0.3.tar.gz).

RevealUptime

Creating a probe

To create a RevealUptime probe use the revealuptime_probe resource:

revealuptime_probe { "http://www.example.com":
  ensure      => present,
  description => "This is a test probe.",
  apikey      => 'abcdef123456',
}

Removing a probe

revealuptime_probe { "http://www.example.com":
  ensure  => absent,
  description => "This is a test probe.",
  apikey  => 'abcdef123456',
}

Contributors

Brett Maton James Turnbull