We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7ecb8 commit 79afd6bCopy full SHA for 79afd6b
Plugin/GlobalExceptionCatcher.php
@@ -194,6 +194,19 @@ public function prepareConfig(): DataObject
194
$config->unsetTracesSampleRate(null);
195
}
196
197
+ $config->setInAppExclude([
198
+ ...($config->getInAppExclude() ?? []),
199
+ 'cron.php',
200
+ 'get.php',
201
+ 'health_check.php',
202
+ 'index.php',
203
+ 'static.php',
204
+ 'bin/magento',
205
+ 'app/autoload.php',
206
+ 'app/bootstrap.php',
207
+ 'app/functions.php',
208
+ ]);
209
+
210
$this->eventManager->dispatch('sentry_before_init', [
211
'config' => $config,
212
]);
0 commit comments