superbalist / monolog-google-cloud-json-formatter
This package is abandoned and no longer maintained.
No replacement package was suggested.
A Monolog extension for formatting log entries for Google Cloud Logging
Package info
github.com/Superbalist/monolog-google-cloud-json-formatter
pkg:composer/superbalist/monolog-google-cloud-json-formatter
1.0.0
2016-04-04 09:26 UTC
Requires
- php: >=5.4.0
- monolog/monolog: ~1.0
This package is auto-updated.
Last update: 2024-07-30 01:02:55 UTC
README
This library works in conjunction with https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud
fluent-plugin-google-cloud is an output plugin for fluentd which sends logs to the Google Cloud Logging API.
This formatter outputs logs entries in json which the fluent-plugin-google-cloud application understands.
Installation
composer require superbalist/monolog-google-cloud-json-formatter
Usage
use Monolog\Logger; use Monolog\Handler\StreamHandler; use Superbalist\Monolog\Formatter; // create a handler $handler = new StreamHandler('path/to/your.log', Logger::WARNING); // use custom formatter in handler $handler->setFormatter(new GoogleCloudJsonFormatter()); // create a log channel $log = new Logger('name'); $log->pushHandler($handler); // add records to the log $log->addWarning('Foo'); $log->addError('Bar');