How to get the threshold value from Alert Rule?

Hi all!
For to read the Reduce value and dinamically add it in the description I’m doing:
Rounded Reduce value: {{ printf “%.2f” $values.B.Value }}%

how to get/access the Threshold value?

acctually $values.C.Value is returning 0|1 so the current alert condition… thanks

Welcome @franz85

I am not sure there is a way to retrieve that threshold value (e.g. 12) using Grafana’s templating tools for alerts.

Here is what I do. Instead of “the allowable limits”, I could have written “3.0” (not really the same as what you asked, but thought I would share it anyway):

image

Hi, surely yours can be a valid alternative, thanks for sharing