newrelic_disable_autorum()
Disable automatic injection of the New Relic Browser snippet on particular pages.
Requirements
Agent version 2.6.5.41 or higher.
Description
This call disables automatic injection of the New Relic Browser JavaScript agent for the current transaction. Call as early as possible. You can use this call to remove the JavaScript if the insertion is causing problems or if you are serving pages to third-party services that do not allow JavaScript (for example, Google's accelerated mobile pages).
To instead enable New Relic Browser with an API call, see:
Parameters
This call does not accept any parameters.
Return value(s)
Returns true
if called within a New Relic transaction. Otherwise returns null
if outside a transaction (for example, if newrelic_end_transaction()
has been called).
Example(s)
function example() { if (extension_loaded('newrelic')) { // Ensure PHP agent is available newrelic_disable_autorum(); } ... }