sentry_client
sentry_client copied to clipboard
TYPO3 Extension for exception logging with sentry, see http://www.getsentry.com
Hi, due to the fact that many exceptions are coming from 3rd party extension it's not that easy to fix all of them. Is there a max number of messages...
TYPO3 scheduler catches exceptions of failed tasks and logs messages with the exception as "exception" data property. PHP Exception objects do not get serialized by json_encode() and thus never reach...
# Problem Exceptions thrown in scheduler tasks only have a generic message in sentry: > Task failed to execute successfully. Class: TYPO3\CMS\Scheduler\Task\ExecuteSchedulableCommandTask, UID: 5 There is no information what actually...
With https://review.typo3.org/c/Packages/TYPO3.CMS/+/83499 Exception handlers in v13 now show the request id as public tracable error information. When the request id arrives in Sentry as tag for filtering, we then could...
* DriverException: An exception occurred while executing a query: Server shutdown in progress
**Goals:** * [x] Deprecate "blacklist" because of inappropriate naming (but still accept the old configuration option to keep it compatible) * [x] Use "ignorelist" as the new name (configuration options...
Hey guys Today I noticed a problem with the SentryService initialization. The exception handlers `Networkteam\SentryClient\DebugExceptionHandler` and `Networkteam\SentryClient\ProductionExceptionHandler` are instanciated early in the TYPO3 boot process (see `TYPO3\CMS\Core\Core\Bootstrap::initializeErrorHandling()`). Because the `Networkteam\SentryClient\Service\SentryService::inititalize()`...
This pull request introduces a PSR-14 event within the extension. This allows developers to intercept the data being prepared for transmission to Sentry, enabling them to prevent specific data from...