sentry-php
sentry-php copied to clipboard
The official PHP SDK for Sentry (sentry.io)
```php \Sentry\init([...]); $client = SentrySDK::getCurrentHub()->getClient(); if ($client !== null) { ... } ``` ```php $client = \Sentry\init([...]); ``` Seems beneficial to make this change.
### How do you use Sentry? Sentry SaaS (sentry.io) ### SDK version 4.7.0 ### Steps to reproduce I think [this line](https://github.com/getsentry/sentry-php/blob/7ed28441a412ca15159e4b4ac3dde2c9f6a55350/src/FrameBuilder.php#L164) needs a change for PHP 8.4 compat - related...
### Problem Statement Hello, I've got the following issue, due to the missing curl.cafile on windows... `sentry/sentry: [error] Failed to send debug event [xxxxxxxxxx] to xxxxxxx [project:xx]. Reason: "cURL Error...
4XX response codes are set to `warning` and 5XX are set to `error`. Part of https://github.com/getsentry/team-sdks/issues/100
Let's get ready! - [ ] https://php.watch/versions/8.4 - [ ] https://stitcher.io/blog/new-in-php-84 - [ ] https://github.com/php/php-src/pull/13550 (as reported in #1744) - [x] Update tests - [ ] This should be modified...
When adding a `exception` property to the monolog context, it would get skipped regardless if the exception was used as hint or not.
In plain PHP this is less interesting but in frameworks it can be very. This allow you to drop a `\Sentry\Profiling\Profiler::startProfiling()` right after the composer autoloader which enable you to...
Adding support for Continuous Profiling. The 30 second limit does no longer apply. For now, we have a simple profiles aggregator, similar to logs, which we can later make smarter...
### Problem Statement We want to be aware of when our customers run into problems with our plugin. The most straightforward way to do that is to add Sentry to...