All Projects → inspector-apm → inspector-laravel

inspector-apm / inspector-laravel

Licence: MIT license
Connect your Laravel application to Inspector.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to inspector-laravel

laravel-redis-sentinel-drivers
Redis Sentinel integration for Laravel and Lumen.
Stars: ✭ 100 (-39.02%)
Mutual labels:  lumen
intuit-spring-cloud-config-inspector
Inspection of Spring Cloud Config properties made easy using React
Stars: ✭ 18 (-89.02%)
Mutual labels:  inspector
entrust
This package is based on Zizaco/entrust to support Laravel/Lumen 6+ versions
Stars: ✭ 22 (-86.59%)
Mutual labels:  lumen
mdebug
基于React开发的新一代web调试工具,支持React组件调试,类似于Chrome Devtools。A Lightweight, Easy To Extend Web Debugging Tool Build With React
Stars: ✭ 237 (+44.51%)
Mutual labels:  inspector
cache
Laravel & Lumen Cache Service | File and Redis cache system
Stars: ✭ 19 (-88.41%)
Mutual labels:  lumen
Laravel-FluentLogger
fluent logger for laravel (with Monolog handler for Fluentd)
Stars: ✭ 55 (-66.46%)
Mutual labels:  lumen
unity-scene-inspector
Scene inspector for Unity.
Stars: ✭ 22 (-86.59%)
Mutual labels:  inspector
nippo
本アプリケーションはYAPC::Hokkaido 2016の「Vue.jsによるWebアプリケーション開発」用に実装したサンプルアプリケーションです。
Stars: ✭ 17 (-89.63%)
Mutual labels:  lumen
benotes
An open source self hosted notes and bookmarks taking web app.
Stars: ✭ 260 (+58.54%)
Mutual labels:  lumen
lumen-realworld-example-app
Exemplary real world backend API built with Lumen + MongoDB
Stars: ✭ 50 (-69.51%)
Mutual labels:  lumen
MultiGame
MultiGame is a tool for rapid development in Unity
Stars: ✭ 16 (-90.24%)
Mutual labels:  inspector
signature
HMAC and RSA signature for Laravel and Lumen
Stars: ✭ 26 (-84.15%)
Mutual labels:  lumen
lumen-session-example
Enable session in lumen framework (Laravel)
Stars: ✭ 22 (-86.59%)
Mutual labels:  lumen
mp4analyser
mp4 file analyser written in Python
Stars: ✭ 50 (-69.51%)
Mutual labels:  inspector
laravel-snowflake
This Laravel package to generate 64 bit identifier like the snowflake within Twitter.
Stars: ✭ 94 (-42.68%)
Mutual labels:  lumen
build-inspector
Inspect your builds to look for changes in filesystem, network traffic and running processes.
Stars: ✭ 12 (-92.68%)
Mutual labels:  inspector
BowieCode
Personal Code/Snippet Library for Unity 3D
Stars: ✭ 23 (-85.98%)
Mutual labels:  inspector
dom-inspector
Dom inspect like chrome dev tools.
Stars: ✭ 124 (-24.39%)
Mutual labels:  inspector
v8-inspector-api
A simple node module to access V8 inspector + some tools to export and read the data.
Stars: ✭ 43 (-73.78%)
Mutual labels:  inspector
httplab
The interactive web server
Stars: ✭ 3,856 (+2251.22%)
Mutual labels:  inspector

Inspector | Code Execution Monitoring Tool

Total Downloads Latest Stable Version License Contributor Covenant

Simple code execution monitoring for Laravel applications.

Requirements

  • PHP >= 7.2.0
  • Laravel >= 5.5

Install

Install the latest version by:

composer require inspector-apm/inspector-laravel

For Lumen

If your application is based on Lumen you need to manually register the InspectorServiceProvider:

$app->register(\Inspector\Laravel\InspectorServiceProvider::class);

Configure the Ingestion Key

First put the Ingestion Key in your environment file:

INSPECTOR_INGESTION_KEY=[ingestion key]

You can obtain an INSPECTOR_INGESTION_KEY creating a new project in your Inspector account.

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

Check out the official documentation

Contributing

We encourage you to contribute to Inspector! Please check out the Contribution Guidelines about how to proceed. Join us!

LICENSE

This package is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].