How to filter traces by multiple values #5830
Unanswered
DarioBernardo
asked this question in
Q&A
Replies: 1 comment 2 replies
-
unless im mistaken, you may need to add the tld at the end of this
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to create a dashboard in the SigNoz web interface and I'm having trouble setting up a filter to include multiple email domains. Here's what I've tried so far:
Current setup:
service.name = myservice
user.email CONTAINS @mydomain
Problem:
I want to extend the filter to include multiple email domains, but none of my attempts have worked. Here are some of the variations I've tried:
user.email CONTAINS @mydomain OR user.email CONTAINS @myotherdomain
user.email IN (@mydomain, @myotherdomain)
user.email =~ "@(mydomain|myotherdomain)"
user.email CONTAINS @mydomain AND NOT user.email CONTAINS @myotherdomain
user.email = "*@mydomain" OR user.email = "*@myotherdomain"
None of these syntaxes seem to work in SigNoz. The filter either doesn't apply at all, or it doesn't return the expected results.
Questions:
What is the correct syntax in SigNoz to filter traces by multiple email domains?
Any help or guidance would be greatly appreciated. If you need any additional information about my setup or what I've tried, please let me know.
Beta Was this translation helpful? Give feedback.
All reactions