sudhaus7/beanstalkhandler

Sends your logs to files, sockets, inboxes, databases and various web services

1.0.0 2018-06-21 18:55 UTC

This package is auto-updated.

Last update: 2024-03-29 03:07:37 UTC


README

A Monolog Handler to push logs to a Beanstalk instance

Usage

// Get a Beanstalk Connection
$beanstalk = new \Pheanstalk\Pheanstalk('127.0.0.1');

// Create a the Handler
$handler = new \Sudhaus7\Monolog\BeanstalkHandler($beanstalk,'logtube');

// Create a Logger
$logger = new \Monolog\Logger('debug');
$logger->pushHandler($handler);

// Log some data
$logger->debug('I am debug', array('productId' => 123));

This is a fast and nonblocking way to log data. Just do not forget to get the data out of beanstalk later. This is very convinient