2017 © Pedro Peláez
 

library yii2-json-log-targets

A collection of Yii2 log targets that format the log message as a JSON string.

image

silinternational/yii2-json-log-targets

A collection of Yii2 log targets that format the log message as a JSON string.

  • Tuesday, August 29, 2017
  • by fillup
  • Repository
  • 5 Watchers
  • 2 Stars
  • 2,041 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 8 Versions
  • 129 % Grown

The README.md

Yii2 JSON Log Targets

A collection of Yii2 log targets that format the log message as a JSON string., (*1)

Usage

EmailServiceTarget

The EmailServiceTarget is used to send logs to our external Email Service API, (*2)

Note, this target can throw a Sil\EmailService\Client\EmailServiceClientException that should be excluded from this target to ensure a looping event is avoided., (*3)

As part of a Yii2 app configuration:, (*4)

    'log' => [
        'targets' => [
            [
                'class' => 'Sil\JsonLog\target\EmailServiceTarget',
                'levels' => ['error'],
                'except' => [
                    'Sil\EmailService\Client\EmailServiceClientException',
                ],
                'logVars' => [], // Disable logging of _SERVER, _POST, etc.
                'message' => [
                    'to' => 'alerts@mydomain.com',
                    'cc' => 'noc@mydomain.com',         // optional
                    'bcc' => 'bcc@mydomain.com',     // optional
                    'subject' => 'Alert from application',
                ],
                'baseUrl' => 'https://emailservice.mydomain.com',
                'accessToken' => 'asdf1234',
                'assertValidIp' => true,
                'validIpRanges' => ['10.0.10.0/24','127.0.0.1'],
                'enabled' => true,
            ],
        ],
    ],

JsonFileTarget

The JsonFileTarget is just like the standard FileTarget except it accepts an array of data in the message and formats it as json before writing to a file., (*5)

As part of a Yii2 app configuration:, (*6)

    'log' => [
        'targets' => [
            [
                'class' => 'Sil\JsonLog\target\JsonFileTarget',
                'levels' => ['error', 'warning'],
                'logVars' => [], // Disable logging of _SERVER, _POST, etc.
            ],
        ],
    ],

JsonSyslogTarget

The JsonSyslogTarget is just like the standard SyslogTarget except it accepts an array of data in the message and formats it as json before sending to Syslog., (*7)

As part of a Yii2 app configuration:, (*8)

    'log' => [
        'targets' => [
            [
                'class' => 'Sil\JsonLog\target\JsonSyslogTarget',
                'levels' => ['error', 'warning'],
                'except' => [
                    'yii\web\HttpException:401',
                    'yii\web\HttpException:404',
                ],
                'logVars' => [], // Disable logging of _SERVER, _POST, etc.
            ],
        ],
    ],

Tips

Have the log prefix (if used) return JSON

Example (to be placed into your Yii2 config file's ['components']['log']['targets'] array):, (*9)

[
    'class' => 'Sil\JsonLog\target\JsonFileTarget',
    'levels' => ['error', 'warning'],
    'except' => [
        'yii\web\HttpException:401',
        'yii\web\HttpException:404',
    ],
    'logVars' => [], // Disable logging of _SERVER, _POST, etc.
    'prefix' => function($message) use ($appEnv) {
        $prefixData = [
            'env' => $appEnv,
        ];
        if ( ! \Yii::$app->user->isGuest) {
            $prefixData['user'] = \Yii::$app->user->identity->email;
        }
        return \yii\helpers\Json::encode($prefixData);
    },
],

If using syslog to send to Logentries, only send the JSON content

Make sure that the template you define for Logentries in your rsyslog.conf file does not add other content before the %msg% data (aside from your Logentries key). For example, do something like this..., (*10)

$template Logentries,"LOGENTRIESKEY %msg%\n"

... NOT like this..., (*11)

$template Logentries,"LOGENTRIESKEY %HOSTNAME% %syslogtag%%msg%\n"

License

This is released under the MIT license (see LICENSE file)., (*12)

The Versions

29/08 2017

dev-master

9999999-dev

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

29/08 2017

1.0.0

1.0.0.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

29/08 2017

dev-develop

dev-develop

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

24/08 2017

0.3.2

0.3.2.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

18/08 2017

0.3.1

0.3.1.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

11/08 2017

0.3.0

0.3.0.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

11/08 2017

0.2.0

0.2.0.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target

12/07 2017

0.1.0

0.1.0.0

A collection of Yii2 log targets that format the log message as a JSON string.

  Sources   Download

MIT

The Requires

 

The Development Requires

log file json yii2 syslog target