welltime/graylog-target

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

Graylog2 log target for Yii2

Installs: 1 387

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 16

Forks: 1

Open Issues: 1

Type:yii2-extension

dev-master 2014-10-16 12:29 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:04:28 UTC


README

php composer.phar require "welltime/graylog-target" "*"

or add

"welltime/graylog-target" : "*"

Usage

<?php
return [
    ...
    'components' => [
        'log' => [
            'traceLevel' => YII_DEBUG ? 3 : 0,
            'targets' => [
                'graylog' => [
                    'class' => 'welltime\graylog\GraylogTarget',
                    'levels' => ['error', 'warning', 'info'],
                    'categories' => ['application'],
                    'host' => '127.0.0.1',
                    'port' => 12201,
                    'source' => 'hostname',
                    'addCategory' => true,                    
                    'addUserId' => true,
                    'addLoggerId' => true,                    
                    'addFile' => true,                    
                ],
            ],
        ],
    ],
    ...
];