asiagohan / monolog-stackdriver-handler
Stackdriver Handler for Monolog
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 18 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 6
Open Issues: 1
Requires
- php: >=5.5
- google/cloud: ~0.20
- monolog/monolog: ~1.11
Requires (Dev)
- mockery/mockery: 0.9.*
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2021-10-26 23:05:10 UTC
README
MonologStackdriverHandler
Monolog Stackdriver Handler is Stackdriver handler for Monolog. It will send Stackdriver a log when an app logs something.
To use this handler, you should have Google Project Id. For more details, check here
Installation
You can install the latest version with:
$ composer require asiagohan/monolog-stackdriver-handler
When use it with Laravel5
edit bootstrap/app.php as below:
$app->configureMonologUsing(function ($monolog) { $stackdriverHandler = new MonologStackdriverHandler\MonologStackdriverHandler('googleProjectId'); $monolog->pushHandler($stackdriverHandler); });
If you want to change the name of the log or other options,
$app->configureMonologUsing(function ($monolog) { $stackdriverHandler = new MonologStackdriverHandler\MonologStackdriverHandler( 'googleProjectId', 'logName', [ 'resource' => [ 'labels' => [ 'foo' => 'bar', ], ], ] ); $monolog->pushHandler($stackdriverHandler); });