Do we have any feature in this module through which we can send additional data as well to Sentry? For eg: The messages in the status report or some custom statistics via some hook/plugin/subscriber?
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | more-docs.patch | 2.61 KB | mfb |
Comments
Comment #2
mfbAs mentioned in the "USAGE" section of the README, you can use all the typical Sentry APIs with this module. Here are some examples from the Sentry docs:
Other Sentry APIs available to you include setting up an event processor (you can see how the various integrations included with Sentry SDK and Raven module do this).
In addition, for events captured thru Drupal logger, this module provides hook_raven_filter_alter() thru which Sentry events are passed, so you can use this hook to call methods on the \Sentry\Event that is about to be captured. We may need to improve the documentation a bit here :)
Comment #3
mfbComment #5
mfb