Skip to content

Commit b653bbf

Browse files
author
Craig Watson
committed
README: Rewrite and reorder
1 parent 70bada7 commit b653bbf

File tree

1 file changed

+20
-24
lines changed

1 file changed

+20
-24
lines changed

README.md

+20-24
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
## Table of Contents
88

99
1. [Overview - What is the puppet-newrelic module?](#overview)
10-
1. [Module Description - What does the module do?](#module-description)
10+
* [Puppet 3 Support](#puppet-3-support)
1111
1. [Setup - The basics of getting started with puppet-newrelic](#setup)
1212
* [What puppet-newrelic affects](#what-puppet-newrelic-affects)
1313
* [Beginning with puppet-newrelic](#beginning-with-registry)
14-
1. [Supported agents]
15-
* [PHP](#php_agent)
16-
* [Java](#java_agent)
1714
1. [Usage - Configuration options and additional functionality](#usage)
15+
* [Advanced Usage Examples](#advanced-usage-examples)
16+
1. [Supported agents](#supported-agents)
17+
* [PHP](#php)
18+
* [Java](#java)
1819
1. [Limitations - OS compatibility, etc.](#limitations)
1920
1. [Development - Guide for contributing to the module](#development)
2021

@@ -26,8 +27,6 @@ This module manages and installs the New Relic Server Monitoring and PHP agents
2627

2728
On 31st December 2016, support for Puppet 3.x was withdrawn. As as a result, **this module does not support Puppet 3**.
2829

29-
## Module Description
30-
3130
## Setup
3231

3332
### What puppet-newrelic affects
@@ -49,7 +48,10 @@ To install the (deprecated) NewRelic Server Monitoring agent instead of the defa
4948
enable_server => true,
5049
}
5150

52-
<a name="php_agent"></a>
51+
## Supported Agents
52+
53+
### PHP
54+
5355
To enable the PHP agent with default configuration:
5456

5557
class { '::newrelic':
@@ -63,8 +65,6 @@ Further PHP agent configuration in Hiera:
6365
appname: 'ACME PHP Application'
6466
daemon.loglevel: 'error'
6567

66-
### Advanced Usage Examples
67-
6868
The below examples show how to integrate the NewRelic PHP agent with the most common web-servers, with automatic service restarts.
6969

7070
#### Apache and `mod_php`
@@ -75,10 +75,9 @@ Assumes usage of the [Puppet Apache module](https://github.com/puppetlabs/puppet
7575
class { '::apache::mod::php': }
7676

7777
class { '::newrelic::agent::php':
78-
license_key => 'your key',
79-
require => Class['::apache::mod::php'],
80-
notify => Service['httpd'],
81-
}
78+
license_key => 'your key',
79+
require => Class['::apache::mod::php'],
80+
notify => Service['httpd'],
8281

8382
#### PHP-FPM
8483

@@ -91,22 +90,19 @@ Assumes usage of the [Slashbunny PHP-FPM module](https://github.com/Slashbunny/p
9190
::phpfpm::pool { 'main': }
9291

9392
class { '::newrelic::agent::php':
94-
license_key => '3522b44f4c3f89c8566d5781bac6e0bb7dedab7z',
95-
require => Class['::phpfpm'],
96-
notify => Class['::phpfpm::service'],
93+
license_key => '3522b44f4c3f89c8566d5781bac6e0bb7dedab7z',
94+
require => Class['::phpfpm'],
95+
notify => Class['::phpfpm::service'],
9796
}
9897

99-
<a name="java_agent"></a>
100-
#### Java Agent
101-
102-
Install newrelic java agent at specified version into an install directory. The install directory is recommended to be the newrelic/ under your app folder.
103-
Ensure permissions are correct on the install folder by using agent_user/agent_group.
98+
### Java
10499

105-
**Note:** Importantly, this does not handle passing newrelic.jar to JVM_OPTS etc. Please refer to NewRelic docs here - https://docs.newrelic.com/docs/agents/java-agent/installation/install-java-agent
100+
This module installs a specified version of the the NewRelic Java agent into an install directory. The install directory is recommended to be `newrelic/` under your app folder. Ensure permissions are correct on the install folder by using `agent_user` and `agent_group`.
106101

102+
**Note:** Importantly, this does not handle passing `newrelic.jar` to `JVM_OPTS` etc. Please refer to NewRelic docs here - https://docs.newrelic.com/docs/agents/java-agent/installation/install-java-agent
107103

108104
class { '::newrelic::agent::java:
109-
license_key => '3522b44f4c3f89c8566d5781bac6e0bb7dedab7z'
105+
license_key => '3522b44f4c3f89c8566d5781bac6e0bb7dedab7z'
110106
}
111107

112108
# or use hiera and include
@@ -115,7 +111,7 @@ Ensure permissions are correct on the install folder by using agent_user/agent_g
115111

116112
## Limitations
117113

118-
* When moving from NewRelic Server to NewRelic Infrastructure - the module only installs the new client, and does not clean up the old one
114+
When moving from NewRelic Server to NewRelic Infrastructure - the module only installs the new client, and does not clean up the old one.
119115

120116
### Windows Support
121117

0 commit comments

Comments
 (0)