This module manages installation and configuration of newrelic server monitoring daemon and application monitoring agents.
class { 'newrelic::server':
license_key => 'your_license_key'
}
Currently the following application monitoring agents are supported:
- [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.
This module is released under the MIT License.
Tyler Stroud [email protected]
Please log tickets and issues at our Projects site
To run the rspec-puppet tests:
rake spec