Reputation: 19398
In my system, when users see program error (status is 500), they can write details in feedback form and submit it.
# for sentry
Raven.user_context sentry_uid: SecureRandom.uuid
and
-# feedback form
- form_for @feedback do |form|
= input :sentry_uid
Question is: How to find sentry issue by sentry_uid?
Upvotes: 1
Views: 5073
Reputation: 1998
We dont support searching by arbitrary values, but what you can do is:
Once either of those are done, you can use either 'sentry_uid:foo' or 'user.id:foo' in the search query.
Upvotes: 1