Download the PHP package nvanheuverzwijn/monolog-logdna without Composer
On this page you can find all versions of the php package nvanheuverzwijn/monolog-logdna. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nvanheuverzwijn/monolog-logdna
More information about nvanheuverzwijn/monolog-logdna
Files in nvanheuverzwijn/monolog-logdna
Package monolog-logdna
Short Description Mezmo/Logdna handler for Monolog
License LGPL-3.0-only
Homepage http://github.com/nvanheuverzwijn/monolog-logdna
Informations about the package monolog-logdna
Mezmo/LogDNA handler for Monolog
Monolog backend for mezmo/logdna. This backend use mezmo/logdna ingestion api.
Install
Install with compose composer require nvanheuverzwijn/monolog-logdna
.
Usage
Live Example
Create the following php script test.php
. Don't forget to set the ingestion key prior to running this script.
Execute it with the following docker command.
You should see the log 'mylog' with debug level in the mezmo/logdna account for which the ingestion key is bound to.
Using with Monolog Processors
Monolog Processors may add some extra data to the log records.
This data will appear in logdna log metadata as property monolog_extra
unless it is empty.
If such a property already exists in the log record's context
, it will be overwritten.
Time Drift Calculation
By default, the handler sends now
parameter to the Ingestion API,
which is used to calculate time drift. You can disable sending this parameter via
License
This project is licensed under LGPL3.0. See LICENSE
file for details.
Versions
1.x is php5 with monolog 1.
2.x is php7 and php8 with monolog 2.
3.x is php8 with monolog 3.
Test
To test the project, simply call make
or make test
. Everything runs in docker container.
Clean
To clean your system, call make clean
. Take note that if you use the same docker images as this project, you might not want to clean. Read the Makefile
for more information.
Code Checks
To check for code smells, run make cs-check
. To fix them, either do it manually or run make cs-fix
.