@petrogromovo You’re not filtering properly. You’re trying to use the value of a tag (StaffUserChangingStatus) but you also need to include the tag name, which is eventType. So just query on that:
eventType:StaffUserChangingStatus
You should also get autocompletion when typing eventType in the search bar.
You‘re probably also better off sticking to snake_case for tag names (i.e. event_type) as per all of Sentry’s other tag names.


