-
Notifications
You must be signed in to change notification settings - Fork 20
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
Add breadcrumbs functionality #141
Conversation
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.
Looks good to me! I left a few comments.
src/Contracts/Reporter.php
Outdated
* | ||
* @param string $message A brief description of the event represented by this breadcrumb, for example "Email Sent". | ||
* @param array $metadata A map of contextual data about the event. This must be a simple key-value array at one level (no nesting allowed). | ||
* @param string $category A key for grouping related events. You can use anything here, but we recommend following the list at https://docs.honeybadger.io/lib/ruby/getting-started/breadcrumbs.html#categories. |
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.
We can change this to a PHP docs link once we add a similar breadcrumbs guide for PHP.
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.
How about you copy this guide:
to this location:
We could leave out the automatic Laravel breadcrumbs section for now so that we can release this PR first.
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.
Changed the link; adding the content 👍
One question: @joshuap : should the breadcrumbs limit (40) really be user-configurable? Or is 40 the maximum allowed? |
Sorry, missed this. It's configurable in honeybadger.js, but it's fixed in the Ruby gem. Maybe we should just make it the max and skip the option to configure for now? |
Yeah, I think that'll be good. |
Status
READY
Description
Implementation of #140
Went with config keys of
breadcrumbs.enabled
andbreadcrumbs.keep
.Also auto-add breadcrumb for
notice
events, in line with other libraries.Related PRs