Hi, I am using Grafana Go templating for alerting. We know that to show the annotations we can use {{ .Annotation }} property and for labels {{ .Labels }} but how the show the errors that we can see in case of the of default grafana alert template for Datasource error-related alerts. I am talking about the below section in default alert. In the below image, only the Error section. not the summary and description section. How can I show it? Should I use {{ .Errors }} property or anything else? Please help thanks.
Ok guys I have figured it out. I have to use
{{ .Annotations.Error }} to capture that. Thank you all.