Download the PHP package ekino/newrelic-bundle without Composer
On this page you can find all versions of the php package ekino/newrelic-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ekino/newrelic-bundle
More information about ekino/newrelic-bundle
Files in ekino/newrelic-bundle
Package newrelic-bundle
Short Description Integrate New Relic into Symfony2
License MIT
Homepage https://github.com/ekino/EkinoNewRelicBundle
Informations about the package newrelic-bundle
Ekino NewRelic Bundle
This bundle integrates the NewRelic PHP API into Symfony. For more information about NewRelic, please visit http://newrelic.com. The built-in New Relic agent doesn't add as much Symfony integration as it claims. This bundle adds a lot more essentials. Here's a quick list:
-
Better transaction naming strategy: Your transaction traces can be named accurately by route names, the controller name or you can decide on a custom naming strategy via a seamless interface that uses any naming convention you deem fit. While running console commands, it also sets the transaction name as the command name.
-
Console Commands Enhancements: While running console commands, its sets the options and arguments passed via the CLI as custom parameters to the transaction trace for easier debugging.
-
Exception Listening: It also captures all Symfony exceptions in web requests and console commands and sends them to New Relic (something new relic doesn't do too well itself as symfony aggressively catches all exceptions/errors). It also ensures all HTTP Exceptions (4xx codes) are logged as notices in New Relic and not exceptions to reduce the noise in New Relic.
-
Interactor Service: It provides you the New Relic PHP Agent API via a Service class
NewRelicInteractorInterface::class
so in my code, I can inject it into any class, controller, service and do stuff like - -
Logging Support: In development, you are unlikely to have New Relic setup. There's a configuration to enable logging which outputs all New Relic actions to your Symfony log, hence emulating what it would actually do in production.
-
Ignored Routes, Paths, Commands: You can configure a list of route name, url paths and console commands to be ignored from New Relic traces.
- Misc: There are other useful configuration like your New Relic API Key, explicitly defining your app name instead of php.ini, notifying New Relic about new deployments via capifony, etc.
Installation
Step 0 : Install NewRelic
review http://newrelic.com ...
Step 1: add dependency
Step 2 : Register the bundle
Then register the bundle with your kernel:
Step 3 : Configure the bundle
In New Relic's web interface, make sure to get a valid (REST) API Key, not to be confused with your License key : New Relic Dashboard > Account settings > Integration > API Keys
Enhanced RUM instrumentation
The bundle comes with an option for enhanced real user monitoring. Ordinarily the New Relic extension (unless disabled by configuration) automatically adds a tracking code for RUM instrumentation to all HTML responses. Using enhanced RUM instrumentation, the bundle allows you to selectively disable instrumentation on certain requests.
This can be useful if, e.g. you're returning HTML verbatim for an HTML editor.
If enhanced RUM instrumentation is enabled, you can disable instrumentation for a given request by passing along a _instrument
request parameter, and setting it to false
. This can be done e.g. through the routing configuration.
Transaction naming strategies
The bundle comes with two built-in transaction naming strategies. route
and controller
, naming the New Relic transaction after the route or controller respectively. However, the bundle supports custom transaction naming strategies through the service
configuration option. If you have selected the service
configuration option, you must pass the name of your own transaction naming service as the transaction_naming_service
configuration option.
The transaction naming service class must implement the Ekino\NewRelicBundle\TransactionNamingStrategy\TransactionNamingStrategyInterface
interface. For more information on creating your own services, see the Symfony documentation on Creating/Configuring Services in the Container.
Symfony HTTP Cache
When you are using Symfony's HTTP cache your app/AppCache.php
will build up a response with your Edge Side Includes (ESI). This will look like one transaction in New Relic. When you set using_symfony_cache: true
will these ESI request be separate transaction which improves the statistics. If you are using some other reverse proxy cache or no cache at all, leave this to false.
If true is required to set the application_name
.
Deployment notification
You can use the newrelic:notify-deployment
command to send deployment notifications to New Relic. This requires the api_key
configuration to be set.
The command has a bunch of options, as displayed in the help data.
The bundle provide a Capifony recipe to automate the deployment notifications (see Resources/recipes/newrelic.rb
).
It makes one request per app_name
, due roll-up names are not supported by Data REST API.
Interactor services
The config keyekino_new_relic.interactor
will accept a service ID to a service implementing NewRelicInteractorInterface
.
This bundle comes with a few services that may be suitable for you.
Configuration value | Description |
---|---|
Ekino\NewRelicBundle\NewRelic\AdaptiveInteractor |
This is the default interactor. It will check once per request if the NewRelic PHP extension is installed or not. It is a decorator for the NewRelicInteractor |
Ekino\NewRelicBundle\NewRelic\NewRelicInteractor |
This interactor communicates with NewRelic. It is the one decorator that actually does some work. |
Ekino\NewRelicBundle\NewRelic\BlackholeInteractor |
This interactor does nothing. |
auto |
This value will check if the NewRelic PHP extension is installed when you build your container. |
Note that if you set ekino_new_relic.enabled: false
you will always use the BlackholeInteractor
no matter what value
used for ekino_new_relic.interactor
.
Flow of the Request
- A request comes in and the first thing we do is to
setApplicationName
so that we use the correct license key and name. - The
RouterListener
might throw a 404 or add routing values to the request. - If no 404 was thrown we
setIgnoreTransaction
which means that we callNewRelicInteractorInterface::ignoreTransaction()
if we have configured to ignore the route. - The Firewall is the next interesting thing that will happen. It could change the controller or throw a 403.
- The developer might have configured many more request listeners that will now execute and possibly add stuff to the request.
- We will execute
setTransactionName
to use ourTransactionNamingStrategyInterface
to set a nice name.
All 6 steps will be executed for a normal request. Exceptions to this is 404 and 403 responses that will be created in
step 2 and step 4 respectively. If an exception to these step occurs (I'm not talking about \Exception
) you will have
the transaction logged with the correct license key but you do not have the proper transaction name. The setTransactionName
may
have dependencies on data set by other listeners that is why it has such low priority.
All versions of newrelic-bundle with dependencies
symfony/config Version ^3.4|^4.0|^5.0|^6.0
symfony/console Version ^3.4|^4.0|^5.0|^6.0
symfony/dependency-injection Version ^3.4|^4.0|^5.0|^6.0
symfony/event-dispatcher Version ^3.4|^4.0|^5.0|^6.0
symfony/http-kernel Version ^3.4|^4.0|^5.0|^6.0