Coder Social home page Coder Social logo

sudoash / sentry-symfony Goto Github PK

View Code? Open in Web Editor NEW

This project forked from getsentry/sentry-symfony

0.0 1.0 0.0 1.22 MB

The official Symfony SDK for Sentry (sentry.io)

Home Page: https://sentry.io

License: MIT License

Shell 0.12% PHP 99.81% Makefile 0.07%

sentry-symfony's Introduction

Sentry

Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join us Check out our open positions

Official Sentry SDK for Symfony

Stable release License Total Downloads Monthly Downloads

CI Coverage Status Discord

This is the official Symfony SDK for Sentry.

Getting Started

Using this sentry-symfony SDK provides you with the following benefits:

  • Quickly integrate and configure Sentry for your Symfony app
  • Out of the box, each event will contain the following data by default
    • The currently authenticated user
    • The Symfony environment

Install

To install the SDK you will need to be using Composer in your project. To install it please see the docs.

composer require sentry/sentry-symfony

If you're using the Symfony Flex Composer plugin, you might encounter a message similar to this:

The recipe for this package comes from the "contrib" repository, which is open to community contributions.
Review the recipe at https://github.com/symfony/recipes-contrib/tree/master/sentry/sentry-symfony/3.0

Do you want to execute this recipe?

Just type y, press return, and the procedure will continue.

Caution: Due to a bug in the SensioFrameworkExtra bundle, affecting version 6.0 and below, you might run into a missing Nyholm\Psr7\Factory\Psr17Factory::class error while executing the commands mentioned above. If you are not using the PSR-7 bridge, you can work around this issue by changing the configuration of the bundle as follows:

sensio_framework_extra:
   psr_message:
      enabled: false

For more details about the issue see sensiolabs/SensioFrameworkExtraBundle#710.

Enable the Bundle

If you installed the package using the Flex recipe, the bundle will be automatically enabled. Otherwise, enable it by adding it to the list of registered bundles in the Kernel.php file of your project:

class AppKernel extends \Symfony\Component\HttpKernel\Kernel
{
    public function registerBundles(): array
    {
        return [
            // ...
            new \Sentry\SentryBundle\SentryBundle(),
        ];
    }

    // ...
}

The bundle will be enabled in all environments by default. To enable event reporting, you'll need to add a DSN (see the next step).

Configure

Add the Sentry DSN of your project. If you're using Symfony 3.4, add the DSN to your app/config/config_prod.yml file. For Symfony 4 or newer, add the DSN to your config/packages/sentry.yaml file.

Keep in mind that by leaving the dsn value empty (or undeclared), you will disable Sentry's event reporting.

sentry:
    dsn: "https://public:[email protected]/1"
    messenger:
        enabled: true # flushes Sentry messages at the end of each message handling
        capture_soft_fails: true # captures exceptions marked for retry too
    options:
        environment: '%kernel.environment%'
        release: '%env(VERSION)%' #your app version

The parameter options allows to fine-tune exceptions. To discover more options, please refer to the Unified APIs options and the PHP specific ones.

Optional: use custom HTTP factory/transport

Since the SDK 2.0 uses HTTPlug to remain transport-agnostic, you need to install two packages that provide php-http/async-client-implementation and psr/http-message-implementation.

This bundle depends on sentry/sdk, which is a metapackage that already solves this need, requiring our suggested HTTP packages: the Symfony HTTP client (symfony/http-client) and Guzzle's message factories (http-interop/http-factory-guzzle).

If you want to use a different HTTP client or message factory, you can override the sentry/sdk package by adding the following to your composer.json after the require section:

    "replace": {
        "sentry/sdk": "*"
    }

For example when you want to use Guzzle's components:

composer require php-http/guzzle6-adapter guzzlehttp/psr7

If you don't have a compatible HTTP client and/or message factory implementation installed php-http/discovery will try to install it for you using a Composer plugin.

Maintained versions

  • 4.x is actively maintained and developed on the master branch, and uses Sentry SDK 3.0;
  • 3.x is supported only for fixes and uses Sentry SDK 2.0;
  • 2.x is no longer maintained; from this version onwards it requires Symfony 3+ and PHP 7.1+;
  • 1.x is no longer maintained; you can use it for Symfony < 2.8 and PHP 5.6/7.0;
  • 0.8.x is no longer maintained.

Upgrading to 4.0

The 4.0 version of the bundle uses the newest version (3.x) of the underlying Sentry SDK. If you need to migrate from previous versions, please check the UPGRADE-4.0.md document.

Custom serializers

The option class_serializers can be used to send customized objects serialization.

sentry:
    options:
        class_serializers:
            YourValueObject: 'ValueObjectSerializer'

Several serializers can be added and the serializable check is done by using the instanceof type operator. The serializer must implement the __invoke method, which needs to return an array, containing the information that should be send to Sentry. The class name is always sent by default.

Serializer example:

final class ValueObjectSerializer
{
    public function __invoke(YourValueObject $vo): array
    {
        return [
            'value' => $vo->value()
        ];
    }
}

Contributing to the SDK

Please refer to CONTRIBUTING.md.

Getting help/support

If you need help setting up or configuring the Symfony SDK (or anything else in the Sentry universe) please head over to the Sentry Community on Discord. There is a ton of great people in our Discord community ready to help you!

Resources

  • Documentation
  • Discord
  • Stack Overflow
  • Twitter Follow

License

Licensed under the MIT license, see LICENSE

sentry-symfony's People

Contributors

addvilz avatar agentsib avatar alexander-schranz avatar bafor avatar big-shark avatar cklm avatar cleptric avatar dcramer avatar emarref avatar garak avatar getsentry-bot avatar guilliamxavier avatar hazat avatar hypemc avatar jean85 avatar localheinz avatar mattjohnsonpint avatar mhor avatar michaelzangerle avatar nocive avatar rdohms avatar rjd22 avatar ruudk avatar server-may-cry avatar simpod avatar stayallive avatar ste93cry avatar sudoash avatar swquinn avatar yozhef avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.