1

I have the following X-ray filter:

http.url CONTAINS "blah"

It works great, except for the fact that I want something like:

http.url !CONTAINS "blah"

The question is how do I write an X ray filter/query so the URL does not contain a specific string.

Thanks, Brian

Brian
  • 556
  • 6
  • 26

1 Answers1

1

You can do this query using

!(http.url CONTAINS "blah")

Hope that works for you!

Rohit Banga
  • 18,458
  • 31
  • 113
  • 191