rouda/monolog-handler

There is no license information available for the latest version (dev-main) of this package.

Implement the logging of your application into the rouda.online dashboard.

dev-main 2024-11-27 21:42 UTC

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.