butopea / monolog-logdna
Logdna handler for Monolog
Installs: 19 125
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 21
Open Issues: 1
Requires
- php: ^7.0
- monolog/monolog: >=1.0
Requires (Dev)
- phpunit/phpunit: ^5.5
README
Monolog backend for logdna. This backend use logdna ingestion api.
Install
Install with compose composer require butopea/monolog-logdna
.
Usage
$logger = new \Monolog\Logger('general');
$logdnaHandler = new \Butopea\Monolog\Handler\LogdnaHandler('your-key', 'myappname', \Monolog\Logger::DEBUG);
$logger->pushHandler($logdnaHandler);
# Sends debug level message "mylog" with some related meta-data
$logger->debug(
"mylog",
[
'logdna-meta-data-field1' => ['value1' => 'value', 'value2' => 5],
'logdna-meta-data-field2' => ['value1' => 'value']
]
);
Live Example
Create the following php script test.php
. Don't forget to set the ingestion key prior to running this script.
<?php
include './vendor/autoload.php';
$INGESTION_KEY='';
\date_default_timezone_set('America/Montreal');
$logger = new \Monolog\Logger('general');
$logdnaHandler = new \Butopea\Monolog\Handler\LogdnaHandler($INGESTION_KEY, 'appname', \Monolog\Logger::DEBUG);
$logger->pushHandler($logdnaHandler);
$logger->debug('mylog');
Execute it with the following docker command.
docker run -it --rm -v "${PWD}":/usr/src/myapp -w /usr/src/myapp php:5.6-cli php test.php
You should see the log 'mylog' with debug level in the logdna account for which the ingestion key is bound to.
License
This project is licensed under LGPL3.0. See LICENSE
file for details.
Versions
Version 1.x is php5 compatible version while 2.x is php7.
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.