Unusable Stack Trace #1299
-
Hi, I'm trying to integrate Sentry to Yii2 application using https://github.com/notamedia/yii2-sentry However I got issue that stack trace doesn't display meaningful frames This is my configuration, using [
'class' => 'notamedia\sentry\SentryTarget',
'dsn' => env('SENTRY_DSN'),
'context' => true,
'clientOptions' => [
'environment' => env('SENTRY_ENV'),
'attach_stacktrace' => true
],
'logVars' => [],
'levels' => ['error'],
'except' => ['yii\web\Session*', 'yii\db\Command*', 'yii\db\Connection\*', 'yii\filters\*', 'yii\db\Exception', 'yii\base\ErrorException*','yii\web\HttpException:404','yii\web\HttpException:400'],
], However the resulting stack trace are only displaying result from Sentry and Yii Logger Can you help with correct setup to have usable stack trace? |
Beta Was this translation helpful? Give feedback.
Answered by
stayallive
Mar 31, 2022
Replies: 1 comment 2 replies
-
I see you also opened an issue on the Yii repository, it's best they take a look first to see if it's not something in the integration that might explain this problem. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
stayallive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see you also opened an issue on the Yii repository, it's best they take a look first to see if it's not something in the integration that might explain this problem.