Alerting no values for resolved status

HI,
first steps on grafana alerting, (! quite tricky : too, too much powerful for basic needs)
(great software indeed!)
I tested, with success, a template
with :
Values:
{{range $k,$v := .Values}}
{{$k}} = {{$v}}
{{end}}
( I put these in Optional Webhook settings message)

but the behaviour is different:
with the alert TRUE I got :

[FIRING:1] and

Values:
B = 02.05

C = 1

when alert if FALSE :
[RESOLVED]

Values:

without any values.

Is it correct? (maybe is not evalueted at all below the threshold)

Thank you!

I’m also working through the issue of resolved emails with no values.

For me, the issue is that my any extra fields (besides value and time) selected from the datasource are treated as “labels”, which determine what’s a unique alert. So, if your query happens to select for an extra value that changes when the alert is resolved, that won’t be seen as a continuation of the previous alert. Could be worth checking if that’s the issue.