Setting up SENTRY_DSN variable in TYPO3 CMS

Hello Burka,

Thanks for your quick reply.
I talk to TYPO3 Devs to bring me more light what he suggests.
Based on php code for sentry_client extension for TYPO3 in case SENTRY_DSN environment variable is set on server level (nginx) and is passed via fastcgi connector to php-fpm the extension configuration for SENTRY_DSN would be not needed (can be skipped):

less <webroot>/typo3conf/ext/sentry_client/Classes/Service/ConfigurationService.php
...
...
    public static function getDsn(): ?string
    {
        return getenv('SENTRY_DSN') ?: self::getExtensionConfiguration(self::DSN);
    }
...
...

I work for web based agency that hosts many TYPO3 CMS projects and indeed for each of these projects would be created its dedicated Project inside Sentry GUI.
With above action of setting “SENTRY_DSN” on server side should be dropped necessity to setup Sentry_DSN within sentry_client extensions for each TYPO3 project.
I will test it tomorrow with TYPO3 Devs and if everything is OK I will resolve this topic.

Regards,

Peter