How can I know from a Sentry project's web interface from which IP address was created a particular issue?

Sentry has a nice feature «Filtered IP Addresses».

But how can I know from a Sentry project’s web interface from which IP address was created a particular issue?

We currently hide it in the UI due to privacy concerns (unless you’re a superuser). We could probably move it behind the “enhanced privacy” or “scrub IP addresses” filter.


Aside, if this is a web request, you might be able to look at the HTTP headers. Alternatively you might want to record user_context(‘ip_address’: ‘…’) which could also give you what you need.

github.com/getsentry/sentry/issues/4904