ogeagleeye / monitor-laravel
OGEagleEye monitoring SDK for Laravel 9–13
Package info
github.com/muazzambaaboo/ogeagleeye-monitor-laravel
pkg:composer/ogeagleeye/monitor-laravel
1.0.0
2026-07-23 13:46 UTC
Requires
- php: >=8.0
- illuminate/console: ^9.0|^10.0|^11.0|^12.0|^13.0
- illuminate/contracts: ^9.0|^10.0|^11.0|^12.0|^13.0
- illuminate/http: ^9.0|^10.0|^11.0|^12.0|^13.0
- illuminate/support: ^9.0|^10.0|^11.0|^12.0|^13.0
- ogeagleeye/monitor-php: ^1.0
Requires (Dev)
- orchestra/testbench: ^8.0|^9.0|^10.0|^11.0
- pestphp/pest: ^2.0|^3.0|^4.0
- pestphp/pest-plugin-laravel: ^2.0|^3.0|^4.0
This package is not auto-updated.
Last update: 2026-07-23 13:48:19 UTC
README
Laravel SDK for OGEagleEye (Laravel 9–13). Ask your system admin for:
- Ingest key (
oge_…) - Events endpoint (e.g.
https://your-host/api/v1/events)
Requirements
- PHP 8.0+
- Laravel 9–13
Install
composer require ogeagleeye/monitor-laravel php artisan vendor:publish --tag=OGEagleEye-config
ogeagleeye/monitor-php is installed automatically as a dependency.
Setup
- Get the ingest key and endpoint from your system admin.
- Add to
.env:
OGEAGLEEYE_KEY=oge_YOUR_KEY_FROM_ADMIN OGEAGLEEYE_ENDPOINT=https://your-host/api/v1/events OGEAGLEEYE_ENABLED=true
Optional:
OGEAGLEEYE_ENVIRONMENT=production OGEAGLEEYE_RELEASE=1.0.0
The service provider is auto-discovered. After env is set, exceptions and HTTP failures are reported automatically — no extra code required.