inspector-apm / inspector-laravel by valerione

Code Execution Monitoring, built for developers.
1,135,437
193
3
Package Data
Maintainer Username: valerione
Maintainer Contact: valerio@inspector.dev (Valerio Barbera)
Package Create Date: 2019-04-16
Package Last Update: 2024-03-22
Home Page: https://inspector.dev
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:27:21
Package Statistics
Total Downloads: 1,135,437
Monthly Downloads: 25,682
Daily Downloads: 1,225
Total Stars: 193
Total Watchers: 3
Total Forks: 14
Total Open Issues: 2

Real-Time monitoring package for Laravel

Build Status Latest Stable Version

Requirements

  • PHP >= 7.0.0
  • Laravel >= 5.5

Install

Install the latest version of our package by:

composer require inspector-apm/inspector-laravel

Configure the API Key

First put the Inspector API KEY in your environment file:

INSPECTOR_API_KEY=[api key]

You can obtain INSPECTOR_API_KEY creating a new project in your Inspector dashboard.

Attach the Middleware

To monitor web requests you can attach the WebMonitoringMiddleware in your http kernel or use in one or more route groups based on your personal needs.

/**
 * The application's route middleware groups.
 *
 * @var array
 */
protected $middlewareGroups = [
    'web' => [
        ...,
        \Inspector\Laravel\Middleware\WebRequestMonitoring::class,
    ],

    'api' => [
        ...,
        \Inspector\Laravel\Middleware\WebRequestMonitoring::class,
    ]

Test everything is working

Run the command below:

php artisan inspector:test

Go to https://app.inspector.dev/home to explore your data.

Official documentation

See official documentation

LICENSE

This package are licensed under the MIT license.