Download the PHP package pluswerk/sentry without Composer
On this page you can find all versions of the php package pluswerk/sentry. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pluswerk/sentry
More information about pluswerk/sentry
Files in pluswerk/sentry
Package sentry
Short Description +Pluswerk TYPO3 extension: Sentry Client
License GPL-2.0-or-later
Homepage https://www.pluswerk.ag/
Informations about the package sentry
Pluswerk TYPO3 Sentry PHP Client
Features:
- has LogWriter that enables you to write any log entries into sentry
- Logs all exceptions caught by the TYPO3 error handling.
- Logs all exceptions that are caught by the TYPO3 ProductionExceptionHandler ContentObject.
- This handles the
Oops, an error occurred! code: 2023080912232477707e9b
errors in your site. - It displays the error message as normal + a link with only a after the code. So a normal user will not see the link.
- The link directly opens the sentry with the correct error.
- This handles the
Quickstart:
- Add environment variables:
SENTRY_DSN=https://[email protected]/instance
SENTRY_ORGANISATION=sentry
(optional) if the organisation of your sentry is different. is used in eg. the Oops, an error occurred! Code: 2023080912232477707e9bDISABLE_SENTRY
(optional) Disable Sentry by setting this to 1SENTRY_QUEUE
(optional) Enable queue system by setting this to 1SENTRY_ERRORS_TO_REPORT
(optional) The Errors to Report as number, e.g. 4096 for E_REVOERABLE_ERROR
- Add the following line to your
AdditionalConfiguration.php
(new \Pluswerk\Sentry\Bootstrap())->initializeHandler();
- If you enabled SENTRY_QUEUE
- Add
typo3 pluswerk:sentry:flush
to your scheduling service - Add environment before the command if you want to report errors while running the command
SENTRY_QUEUE=0 typo3 pluswerk:sentry:flush
- Add
Settings
The Extension comes with a couple of settings in the TYPO3-Backend:
force_disable_sentry
-> Forcefully override the ENV by disabling Sentry in backendenable_git_hash_releases
(default yes) -> Automatically track releases with the current git hash (only works if git is installed)
Configuring the scope
Sometimes it might be necessary to additionally configure the scope of a sentry event.
For this, the method \Pluswerk\Sentry\Sentry::withScope($exception, $scopeCallback)
comes in play.
The arguments are similar to https://docs.sentry.io/platforms/php/enriching-events/scopes/#local-scopes
.
The first argument requires the exception to be thrown and the second is a callback,
for where you can apply custom settings to the Sentry Scope.
There is no need to additionally write captureException
within that callback.
Example:
SentryLogger
You can write this in your additional.php if you want all warnings from the TYPO3 log to be logged in Sentry:
All versions of sentry with dependencies
ext-fileinfo Version *
composer-runtime-api Version ^2
http-interop/http-factory-guzzle Version ^1.0
psr/log Version *
sentry/sentry Version ^3.22.1
typo3/cms-core Version ^11.5 || ^12.4
typo3/cms-frontend Version ^11.5 || ^12.4