Hi support, I would like to check what variables w...
# support
j
Hi support, I would like to check what variables we able to use in Signoz's log-based alert notifications? I couldn't find any documentation detailing this..thanks!
s
You can use all the attributes from the
GROUP BY
clause. The syntax for using them is
{{ .Lables.{variable_name_here} }}
, for instance if you want to use
k8s_namespace_name
from group by clause it would be
{{ .Labels.k8s_namespace_name}}
.
j
Thanks Srikanth! Will try this out