sentry-laravel
sentry-laravel copied to clipboard
The official Laravel SDK for Sentry (sentry.io)
### Problem Statement First of all, thank you for giving us a way to handle lazy loading/n+1 queries in production! It is so handy Do you think we could have...
### Problem Statement When playing around with Laravel Folio I noticed the view spans have the full path the the views:  This is a little on the long and...
Based on @bradleybernard's [tweet](https://twitter.com/bradleybernard/status/1683907272081297408), we should look into ignoring some transactions from Horizon, Telescope, and DebugBar by default.
We could listen to the `Illuminate\Mail\Events\MessageSending` and `Illuminate\Mail\Events\MessageSent` events to figure out when an mail was sent and possibly nest the view rendering needed to sent that e-mail neatly underneath...
The Laravel [gates](https://laravel.com/docs/9.x/authorization#gates) feature allow us to define callbacks with `Gate::before` and `Gate::after`, we could use this to create a span for the gate check (since gates might execute queries)...
[Laravel Pennant](https://github.com/laravel/pennant.) is a new feature flagging library for Laravel. There are currently two events dispatched, `FeatureRetrieved` and `FeatureResolved`. We could try contributing new `FeatureRetrieve` and `FeatureResolve` events upstream, or...
Hi! We are in the process of switching from Datadog to Sentry fully (paid) and one thing I noticed is that there is no Elasticsearch traces. Is that something that...
### Environment Laravel 9 Php 8.0 sentry-laravel ^2.13 ### Expected Result I created a helper function to send a log message and add some Breadcrumbs before that message. I'm adding...
We have the `$schedule->command(...)->sentryMonitor()` to "magically" setup cron monitoring for scheduled commands, how cool would it be if we could have someway to do this but for queues. **Note:** This...
Trace origin indicates what created a trace or a span. Not all traces and spans contain enough information to tell whether the user or what precisely in the SDK created...