-
-
Notifications
You must be signed in to change notification settings - Fork 201
Add more options to breadcrumbs configuration #258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@stayallive any feedback on the PR? |
|
@stayallive Is there any chance to look at this PR? |
|
Yeah I'm really sorry for ignoring you for this long. I don't think this is the way to go, since this does not allow us (or Laravel) to ever make changes in the event names/types we want to watch for an operation. There are also quite some other cases where right now it's needed that the How about we do something like you requested in your original request. Just allow for disabling the query breadcrumbs? We already have: 'breadcrumbs' => [
// Capture bindings on SQL queries logged in breadcrumbs
'sql_bindings' => true,
],What about adding an option like for example: 'breadcrumbs' => [
// Log SQL queries as breadcrumbs
'queries' => true,
// Capture bindings on SQL queries logged in breadcrumbs
'sql_bindings' => true,
],This way we could keep adding options to disable built-in breadcrumb features without having to have a defined list of events in the user config. |
|
@stayallive Thanks for the feedback, I'll check and update my PR. |
|
Many thanks for taking the time to do that! |
ec21d1c to
c6adca5
Compare
|
@stayallive Please check again, thanks. |
|
@HazAT Can you check this PR? thanks. |
|
I would love to see this merged. How can we move forward on this PR? |
HazAT
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Thank you!
Note: We should update our docs here: https://docs.sentry.io/platforms/php/laravel/#laravel-specific-options
cc @stayallive
|
Great! looks we are making a progress, Thank you all @leo108 @stayallive @HazAT |
stayallive
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks again for your patience and working on this 👍
Fixes #257