Hey guys, I am pretty new to SigNoz. How can I fil...
# support
g
Hey guys, I am pretty new to SigNoz. How can I filter logs using a dashboard variable in the query builder ? i can't seem to write something like
service.name={{service.name}}
. Thanks
s
The variables use the go templating. It should be of the form
key={{.value}}
. In your case, it would be
service.name={{.service.name}}
.
1