rouda / monolog-handler
Implement the logging of your application into the rouda.online dashboard.
Requires
- monolog/monolog: ^3.0
This package is auto-updated.
Last update: 2025-03-27 22:18:58 UTC
README
This package provides an integration for the Monolog logging library to send logs from your PHP application to your Rouda.online dashboard. By using this package, you can easily monitor and analyze your application's logs in real-time through the Rouda.online interface.
Features
- Seamless integration with Monolog
- Real-time log monitoring on Rouda.online dashboard
- Easy setup and configuration
Installation
To install this package, you can use Composer:
composer require rouda/monolog-handler
To use this package as a logging channel in Laravel, you need to add the following code to the logging.php
configuration file:
'logentries' => [
'driver' => 'monolog',
'handler' => rouda\monologHandler\ApiLogger::class,
'with' => [
'authToken' => 'string',
'environmentId' => 'string',
],
],
This configuration sets up a custom logging channel named 'logentries' using the Monolog library's SyslogUdpHandler. Replace 'authToken', 'applicationId' and 'applicationEnv' with the appropriate details found in your rouda.online dashboard.