Download the PHP package mondago/laravel-application-insights without Composer
On this page you can find all versions of the php package mondago/laravel-application-insights. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mondago/laravel-application-insights
More information about mondago/laravel-application-insights
Files in mondago/laravel-application-insights
Package laravel-application-insights
Short Description A Laravel 8 package to send application insights to Microsoft Application Insights
License MIT
Homepage https://github.com/Mondago/laravel-application-insights
Informations about the package laravel-application-insights
Application Insights for Laravel
Installation
Add the following to your composer.json file:
and require it by adding the following line to your composer.json file under "require":
Optionally, you can publish the config file of this package with this command:
Middleware
As a convenience you may choose to use the Mondago\ApplicationInsights\Middleware\TrackRequest
middleware which will send the request and response to Application Insights.
The middleware utilizes terminable middleware from Laravel to ensure that tracking the request doesn't block the response being sent.
Since 0.6.2, if the request has a session started, this middleware will set the session id as the anonymous user id to allow tracking of user flows.
Make sure to include this in each route group you'd like to track requests for, as attaching it to the global middleware will result in the session never being set.
You can disable this by setting the environment variable APPINSIGHTS_TRACK_ANONYMOUS_USERS
to false
.
Logging
Since 0.6.2 a custom monolog handler is provided for sending logs to application insights. This handler captures exceptions as well as other log levels. Exceptions are tracked as exceptions, and log messages are sent with their closes matching severity level.
To use this, update your config/logging.php
configuration with the following:
You might then choose to include this in your stack
log handler:
Logging Migrations
This package will automatically send migration events to application insights when enabled.
Since 0.6.2 this includes when no migrations were ran. This is great for container images that run php artisan migrate
on startup.
Support Matrix
Our Version | Laravel Version |
---|---|
^0.7.0 | ^10.0 |
^0.6.0 | ^9.0 |
^0.4.0 | ^8.0 |
^0.3.0 | ^7.0 |
All versions of laravel-application-insights with dependencies
laravel/framework Version ^9.19
mondago/application-insights Version ^0.5.1
monolog/monolog Version ^2.0