Forge Home

newrelic

Puppet module for NewRelic

7,247 downloads

7,247 latest version

3.0 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

  • 4.1.1 (latest)
released Apr 4th 2016
This version is compatible with:
  • Puppet Enterprise 3.x
  • Puppet 3.x
  • , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'ehime-newrelic', '4.1.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ehime-newrelic
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ehime-newrelic --version 4.1.1

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

ehime/newrelic — version 4.1.1 Apr 4th 2016

Newrelic Module for Puppet

puppet-newrelic Build Status

This module manages and installs the New Relic Server Monitoring and PHP agents.

Supported systems: Debian and RHEL osfamily Linux.

Operating System

Tested on CentOS, Debian, Ubuntu and Windows.

Windows support added/tested/supported by malaikah.

IMPORTANT

Module version 4.x was refactored. A lot of parameters were added, removed, renamed or changed.

Module version 4.0.1 is moving away from defined classes, deprecation warnings were added. Using the new classes is backwards compatible.

Review all the parameters you use before deploying this module in production.

Quick Start

To install the Newrelic Server Monitoring and the PHP agent packages, include the following in your manifest file:

node default {
  class { '::newrelic::server::linux':
    newrelic_license_key => 'your license key here',
  }

  class { '::newrelic::agent::php':
    newrelic_license_key => 'your license key here',
    newrelic_ini_appname => 'Your PHP Application',
  }
}

To do the same for a Windows .Net host, include the following:

node default {
   class {'::newrelic::server::windows':
     newrelic_license_key => 'your license key here',
   }

   class {'::newrelic::agent::dotnet':
     newrelic_license_key  => 'your license key here',
   }
}

(Note that, while it is possible to specify a version of the .Net agent, caution should be excercised if doing this. Newrelic make only the last two releases available on http://download.newrelic.com/dot_net_agent/release/.)

If you use Ubuntu 14.04 and php5-fpm you can pass an array of directories for PHP ini files:

     class {'::newrelic::agent::php':
       newrelic_license_key  => 'your license key here',
       newrelic_ini_appname  => 'Your PHP Application',
       newrelic_php_conf_dir => ['/etc/php5/mods-available/conf.d','/etc/php5/fpm/conf.d'],
     }

Parameters

There are a lot of parameters you can customize, check the .pp files and the New Relic documentation to understand them.

Mandatory parameters:

  • newrelic_license_key

Copyright and License

Copyright (C) 2016 Jd Daniel

Jd Daniel can be contacted at: dodomeki@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.