11# Laravel 5 NewRelic Service Provider
22* [ see below for Laravel 4.x support] ( https://github.com/In-Touch/laravel-newrelic#laravel-4x-support ) *
33
4- ### Installation
4+ ## Installation
55
66Using ` composer ` , run:
77
@@ -32,12 +32,12 @@ Finally, publish the default configuration (it will end up in `config/newrelic.p
3232
3333 php artisan vendor:publish
3434
35- ### Configuration
35+ ## Configuration
3636
3737Once the configuration from the package if published, see ` config/newrelic.php ` for configuration options and
3838descriptions.
3939
40- ### Transaction Names
40+ ## Transaction Names
4141
4242Naming is done by replacing tokens in a ` name_provider ` string with formatted output collected from the application.
4343The ` newrelic.name_provider ` config parameter holds this string - note that non-token string parts are left as-is.
@@ -52,7 +52,7 @@ The `newrelic.name_provider` config parameter holds this string - note that non-
5252
5353The default ` newrelic.name_provider ` string is ` '{uri} {route}' ` .
5454
55- ### Eloquent Model Observers
55+ ## Eloquent Model Observers
5656
5757There are two observer classes for monitoring your Eloquent models, the ` NewrelicCountingObserver ` and the
5858` NewrelicTimingObserver ` . As their names suggest, one counts the number of times observable model events happen and the
@@ -103,7 +103,7 @@ Service Provider.
103103#### Example Custom Metrics Dashboard
104104![ dashboard] ( dashboard.png )
105105
106- ### Basic Use
106+ ## Basic Use
107107
108108This package includes a Facade to the [ Intouch/Newrelic] ( http://github.com/In-Touch/newrelic ) class.
109109Any of its methods may be accessed as any other Facade is accessed, for example:
@@ -114,7 +114,7 @@ Any of its methods may be accessed as any other Facade is accessed, for example:
114114
115115... would set the NewRelic App Name to 'MyApp'
116116
117- ### Laravel 4.x Support
117+ ## Laravel 4.x Support
118118
119119| Laravel Version | Package Tag | Supported |
120120| -----------------| -------------| -----------|
@@ -124,7 +124,7 @@ Any of its methods may be accessed as any other Facade is accessed, for example:
124124* we will review PRs for unsupported versions, but we don't use those versions in production ourselves so we aren't
125125testing / working on that*
126126
127- ### Issues
127+ ## Issues
128128
129129Before opening an issues for data not reporting in the format you have configured, please check your NewRelic PHP Agent
130130logs and please see:
0 commit comments