Issue
I want to find all issues or events reported from a specific domain, using a wildcard search on the URL.
Applies To
All SaaS Customers and Self-Hosted Users
Resolution
Search by the event's URL and use the wildcard character * to match a domain anywhere in the value. There are two URL properties, and which one you use depends on where the URL comes from.
Search by request URL (http.url)
http.url is the full URL of the request that caused the error, without query parameters. To find events from a domain:
http.url:"*example.domain*"
Search by page URL (url tag)
Browser events also carry the page URL as the url tag. If that's what you want to match:
url:"*example.domain*"
Filter to events that have a URL at all
Use has: to return only events that carry a URL value, regardless of what it is:
has:http.url
Notes
The wildcard
*is supported as a placeholder for any characters, so"*example.domain*"matches the domain anywhere in the URL. See the wildcard search syntax.You can't combine wildcards with the list syntax (
http.url:["*a*", "*b*"]). To match multiple patterns, useORbetween separate tokens, for examplehttp.url:"*a*" OR http.url:"*b*".http.urlandurlare event properties. On the Issues page, a match returns any issue that has one or more events matching the filter. The full list is in the searchable event properties reference.
