Download the PHP package seretalabs/monolog-fluentd-bundle without Composer
On this page you can find all versions of the php package seretalabs/monolog-fluentd-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download seretalabs/monolog-fluentd-bundle
More information about seretalabs/monolog-fluentd-bundle
Files in seretalabs/monolog-fluentd-bundle
Download seretalabs/monolog-fluentd-bundle
More information about seretalabs/monolog-fluentd-bundle
Files in seretalabs/monolog-fluentd-bundle
Vendor seretalabs
Package monolog-fluentd-bundle
Short Description Simple wrapper bundle for Symfony2 that extends Monolog with Fluentd support
License
Package monolog-fluentd-bundle
Short Description Simple wrapper bundle for Symfony2 that extends Monolog with Fluentd support
License
Please rate this library. Is it a good library?
Informations about the package monolog-fluentd-bundle
MonologFluentdBundle
This bundle enables logging to the fluentd log concentrator from Symfony.
Fluentd is an open source datacollector and decouples your logging collection
and analysis tools from your project by sending all logs from deamons, apps
in front and backend to one single daemon and use filtering to selectively
forward to storage engine / analysis tools
fluentd handler for Monolog as a Symfony bundle.
Installation
Kernel
$bundles = array(
//..
new Seretalabs\MonologFluentdBundle\MonologFluentdBundle(),
);
Autoload:
$loader->registerNamespaces(array(
//..
'Seretalabs' => __DIR__.'/../vendor/bundles',
));
Configuration
Configure Monolog
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: fluentd
fluentd:
type: service
id: monolog_fluentd.monolog_handler
Configure monolog for fluentd:
monolog_fluentd:
# fluentd API host
host: localhost
# fluentd API port default 24224
port: 24224
# Level to be logged (defaults to DEBUG)
level: DEBUG
bubble: true
Usage
credits
This bundle uses [daktsuka](https://github.com/dakatsuka)'s fluentd handler for Monolog [https://github.com/dakatsuka/MonologFluentHandler]
All versions of monolog-fluentd-bundle with dependencies
PHP Build Version
Package Version
The package seretalabs/monolog-fluentd-bundle contains the following files
Loading the files please wait ....