Labels and values in Alerting descriptions

Hi again. Working on data alerting from Azure monitoring and want to make some dynamic descriptions. But unfortunately the syntax is still the mystery for me. I tried to follow this guide How To Use Alert Message Templates in Grafana - #3 by melori.arellano but I see just a blank space or “no value”.

The initial data looks like this:

The variants of labels variables I tried to:
{{ $values.B0.Labels “SiteName” }}
{{ $values.B0.Labels}}
{{ index $labels “B” }}
{{$labels “B” }}
Sorry if this was questioned before, can’t find any working variant. Thanks a lot for the help

SiteName is label (not value), so use {{ $labels.SiteName }}.

1 Like

Thanks a lot my man, really appreciate it