Michi Hoffmann
Michi Hoffmann
Ok, this makes more sense. I'll take a look!
We started working on Metrics this week.
Yes, but not in its current form. See https://sentry.zendesk.com/hc/en-us/articles/26369339769883-Upcoming-API-Changes-to-Metrics for more details.
I started looking into this, we might need to cache the request somewhere early in the live cycle. We do the same in our Laravel SDK, so I think this...
Because we need the data when an error happens (the easy part) and on transaction finish, which happens on `kernel.terminate`. Hence we store the request early, and have it laying...
Just to clarify, you're talking about unrelated breadcrumbs during the current request? This sounds like it's expected to me, breadcrumbs should show a trail of events that happened before an...
Are you running in some sort of CLI context? For HTTP requests, yes, the breadcrumbs should only be related to the current request cycle and nothing more.
In our Laravel SDK, we do clear the breadcrumbs for each job. https://github.com/getsentry/sentry-laravel/blob/8ce96842a9c3b047077fd59d66692ccf4eee5fc0/src/Sentry/Laravel/EventHandler.php#L573-L584 I can see how this would be helpful, not clearing them might be helpful as well. So...
Yes, let's take a look on how to improve this a bit.