#How can I filter multiple error values in Sentry research ?

8 messages · Page 1 of 1 (latest)

coral sphinx
#

I'm looking to know how can I search in Sentry UI using operators "AND" or "OR" for multiple error values like here:
error.value:"[API Error] POST /ot-link (504)" OR error.value:"Network error"

cosmic hinge
#

You can do that by doing: error.value:["[API Error] POST /ot-link (504)","Network error"]

coral sphinx
#

Thank you Alex 🙂 It helps me a lot.
But when I want to use the * instead of some prefixes it doesn’t work. Is there any special characters to use with the start like the back slash ?

#

for example for error value containing the error code 50* (500, 502, 503, etc.)

cosmic hinge
#

Currently, you can't use this type of search on the keyword is and you can't use wildcards with this type of search.
That is not supported it looks like.

coral sphinx
#

Yes I think so

coral sphinx
#

When I use the * with only one entry in the field error.value it works. Like this: error.value:"[API Error] GET /store-locator*". It returns all issues related to this endpoint even it is 400 or 500 errors