From 16eb7f4fb4c8d45a6bc14e072c6dc1fd453c9696 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 21 Nov 2023 09:01:52 +0100 Subject: [PATCH] Add tracing option to Sentry configuration --- config/sentry.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/sentry.php b/config/sentry.php index 6460f9b65..a09025958 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -76,6 +76,7 @@ return [ 'send_default_pii' => env('SENTRY_SEND_DEFAULT_PII', false), // @see: https://docs.sentry.io/platforms/php/guides/laravel/configuration/options/#traces-sample-rate + 'enable_tracing' => env('SENTRY_ENABLE_TRACING', false), 'traces_sample_rate' => 0.2, 'profiles_sample_rate' => env('SENTRY_PROFILES_SAMPLE_RATE') === null ? null : (float)env('SENTRY_PROFILES_SAMPLE_RATE'),