Smart Filters containing Multiple Items #3965
Unanswered
mrittlinger
asked this question in
Q&A
Replies: 3 comments 4 replies
-
Hello @mrittlinger ! Thanks for raising it. Here are some questions:
|
Beta Was this translation helpful? Give feedback.
2 replies
-
Hello team, I'm having trouble getting the date rage. Could someone please assist me? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Just FYI, getting the same issue. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm having some trouble getting the smart filters to work with more complex constructs. I am using 0.7.
My value is json format and looks like this:
I can filter by a single value. Both of these filters work fine individually:
value.SystemId == "5670"
value.Message.contains("Unauthorized")
If I try to combine them the data is not filtered (as if there is no filter). Clicking the "Submit" button returns immediately. I have tried these variations:
value.SystemId == "5670" && value.Message ==~ "Unauthorized*"
value.SystemId == "5670" && value.Message.contains("Unauthorized")
Similarly, I have also attempted to use the timestampMs field to filter by date range.
Groovy attempt -
Java attempt -
Any advice on how to filter by multiple fields and date range would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions