PHP code example of tiime / newrelic-bundle
1. Go to this page and download the library: Download tiime/newrelic-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tiime / newrelic-bundle example snippets
// Bundle
$this->newRelic->addCustomParameter('name', 'john');
// Extension
if (extension_loaded('newrelic')) {
\newrelic_add_custom_parameter('name', 'john');
}
// config/bundles.php
return [
// ...
Tiime\NewRelicBundle\TiimeNewRelicBundle::class => ['all' => true],
];