Forge Home

newrelic_agent

Puppet module for installing and managing the NewRelic agents

12,063 downloads

12,063 latest version

3.5 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.3.0 (latest)
released Dec 11th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'meltwater-newrelic_agent', '0.3.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add meltwater-newrelic_agent
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install meltwater-newrelic_agent --version 0.3.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

meltwater/newrelic_agent — version 0.3.0 Dec 11th 2013

puppet-newrelic_agent

Puppet Module for Installing & Managing the various NewRelic server monitoring agents.

This module tries to expose all of the configuration settings that NewRelic provides for their monitoring agents. All of the default values for the parameters are taken from the configuration files provided by NewRelic for the agents.

Usage

All of the sub-classes to this module have a depenency of the main class to set your NewRelic license key.

A simple installation of this module would consist of the following:

class { newrelic_agent:
  newrelic_license_key => 'abc123xyz',
}

class { 'newrelic_agent::php':
  php_agent_appname => 'My PHP Application',
  notify_service    => 'httpd',
}

This will setup the sysmond agent in the main class for hardware monitoring, then install the PHP agent for NewRelic and then notify the httpd service to reload to initialize the monitoring agent.