Version information
released Dec 30th 2013
Start using this module
Add this module to your Puppetfile:
mod 'tystr-newrelic', '0.1.1'
Learn more about managing modules with a PuppetfileDocumentation
tystr/newrelic — version 0.1.1 Dec 30th 2013
Newrelic Puppet Module
This module manages installation and configuration of newrelic server monitoring daemon and application monitoring agents.
Quick Start
Install the server monitoring daemon
class { 'newrelic::server':
license_key => 'your_license_key'
}
Install application monitoring agents
Currently the following application monitoring agents are supported:
- [PHP] (#php)
PHP
Basic installation:
class { 'newrelic::php':
license_key => 'your_license_key',
}
If you need to customize the installation process, you can pass parameters to the class:
class { 'newrelic::php':
license_key => 'your_license_key',
install_noksh => 1,
install_shell => 'bash',
install_path => 'path1:path2',
install_phplist => 'dir1:dir2',
install_arch => 'x86',
install_initscript => 'initscript-name',
install_daemonpath => '/usr/bin/newrelic-daemon',
install_use_cp_not_ln => 'startup-daemon'
}
See Newrelic's documentation for more information about these options.
License
This module is released under the MIT License.
Contact
Tyler Stroud tyler@tylerstroud.com
Support
Please log tickets and issues at our Projects site
Running the Tests
To run the rspec-puppet tests:
rake spec
Changelog
-
0.1.1
- Added the ability to customize the environment variables used by the php agent install script
Copyright (c) 2013 Tyler Stroud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.