Nope - it just shows that as regular text in the Slack notification. I also tried email to see if it was unique to our Slack implementation, and it showed the same behavior.
I am having the same issue. I’m trying to make add dynamic information into custom alert labels. We are using Grafana 8.1.2. I do have a “Classic condition” operation on the alert which is “B” but I’m trying to pull from “A”. The below all render as plain text in the alert instead of the dynamic data I’m wanting. Any ideas or help would be much appreciated.
Hi! If A is the query in your alert then you cannot use $values.A because A is a time series, not a single value. This is also why you either need a Reduce expression or Classic Condition as Grafana can only alert on single values, not time series.
I think in your example you will want to use $values.B0, which is the Classic Condition. The number at the end corresponds to the condition in the Classic Condition.