I’m having a hard time getting something that seems conceptually very simple to work.
I just want an annotation every time the value of one of my tags changes. In this case its a software version, so I’m trying to use something like this for my annotation query:
select min(time), sw_version from latency_v2 where customer=‘SomeCustomer’ and cluster=‘SomeCluster’ group by sw_version
which would allow me a nice annotation in the charts for when a new value appears. But I’ve hit every sort of error experimenting with different variants of that notion, from empty results to time appearing only as zero, to the ‘must query something besides time…’
Can anyone more familiar with the limitations of Influx/Grafana help me out here? thanks!