Download the PHP package kevbaldwyn/newrelic-fuel without Composer
On this page you can find all versions of the php package kevbaldwyn/newrelic-fuel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download kevbaldwyn/newrelic-fuel
More information about kevbaldwyn/newrelic-fuel
Files in kevbaldwyn/newrelic-fuel
Download kevbaldwyn/newrelic-fuel
More information about kevbaldwyn/newrelic-fuel
Files in kevbaldwyn/newrelic-fuel
Vendor kevbaldwyn
Package newrelic-fuel
Short Description A simple new relic framework integration for FuelPHP
License
Package newrelic-fuel
Short Description A simple new relic framework integration for FuelPHP
License
Please rate this library. Is it a good library?
Informations about the package newrelic-fuel
newrelic-fuel
A simple new relic framework integration for FuelPHP
Installation
With Composer
"require": {
...
"kevbaldwyn/newrelic-fuel":"0.*"
...
}
Composer Update:
$ composer update kevbaldwyn/newrelic-fuel
Usage
To start logging transactions you simply need to add a call to register the event listener somewhere logical such as the end of the bootstrap.php file:
KevBaldwyn\NewRelic\EventListener::register();
To use the page load time monitoring add the following 2 calls to your layout template:
echo KevBaldwyn\NewRelic\View::start();
echo KevBaldwyn\NewRelic\View::end();
For example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
</head>
<body>
....
</body>
</html>
If you do not want to output the script tags then pass false
to the View::start()
and View::end()
:
All versions of newrelic-fuel with dependencies
PHP Build Version
Package Version
The package kevbaldwyn/newrelic-fuel contains the following files
Loading the files please wait ....