mgdsoft/stackdriver-bundle

Google Stackdriver monolog handler & error reporting

Installs: 3 867

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 1

Open Issues: 0

Type:symfony-bundle

v1.0.3 2022-03-11 18:44 UTC

This package is auto-updated.

Last update: 2024-03-21 05:00:40 UTC


README

Log all records in Stackdriver using this bundle. Some features

  • Error reporting send notifications (by exception or log level error)
  • Create correct metadata from $_ENV vars
  • Auto create logname ${gcloud_service}-symfony.log
  • track logs from same request with label requestId
  • Track current user

Installation

This bundle use auto recipes from https://github.com/symfony/recipes-contrib, to enable execute

composer config extra.symfony.allow-contrib true

Install the bundle...

composer req mgdsoft/stackdriver-bundle

The bundle will be configured only for prod environment see packages/prod/mgdsoft_stackdriver.yaml for more info.

Inside appengine credentials are configured auto, but to test in local you must set mgdsoft_stackdriver.credentials_json_file

Finally configure like simple monolog service handler and enjoy it.

# /config/packages/prod/monolog.yaml
monolog:
    handlers:
        stack_driver:
            type: service
            id: MGDSoft\Stackdriver\Logger\Handler

By default all errors are reported, if you want to disable update bundle config

#./bin/console config:dump-reference MGDSoftStackdriverBundle

mgdsoft_stackdriver:
    credentials_json_file:  null
    log_name:               null
    level:                  info
    error_reporting:
        enabled:              true
        ignore_400:           true

All pull request are welcome ;-)