Giter VIP home page Giter VIP logo

Comments (7)

CookiesEater avatar CookiesEater commented on June 10, 2024 2

Hi! Please check 1.6.0-beta release, this can be used like this:

[
    'class' => \notamedia\sentry\SentryTarget::class,
    'dsn' => 'xxx',
    'clientOptions' => [
        'traces_sample_rate' => 1.0,
    ],
],

from yii2-sentry.

chrisc0 avatar chrisc0 commented on June 10, 2024

Yes, this works now but the 'excluded_exception' option no longer works like in the previous version. The option can be seen here in the docs. Before I included this in the clientOptions array:

'excluded_exceptions' => [
        'yii\web\NotFoundHttpException',
],

from yii2-sentry.

CookiesEater avatar CookiesEater commented on June 10, 2024

excluded_exceptions is not supported in sentry 3.0 (it's can be done with IgnoreErrorsIntegration, but custom integrations not supported by now)

You can use Yii2 except mechanism to achieve this (https://www.yiiframework.com/doc/guide/2.0/en/runtime-logging#message-filtering), like

'class' => \notamedia\sentry\SentryTarget::class,
'except' => [
    'yii\web\HttpException:404',
],
'dsn' => 'xxx',
'clientOptions' => [
    'traces_sample_rate' => 1.0,
],

from yii2-sentry.

webparadoxer avatar webparadoxer commented on June 10, 2024

У кого то заработал perfomance мониторинг? пробовали и 1.6 и 1.7 - не прилетает ничего

from yii2-sentry.

webparadoxer avatar webparadoxer commented on June 10, 2024

any updates?

from yii2-sentry.

CookiesEater avatar CookiesEater commented on June 10, 2024

Do you wrap code in transactions as it say in docs: https://docs.sentry.io/platforms/php/performance/ ?

from yii2-sentry.

CookiesEater avatar CookiesEater commented on June 10, 2024

Please open another issue if you don't receive stats after wrapped code in transaction and setting traces_sample_rate

from yii2-sentry.

Related Issues (20)

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.