I have 2 influx queries that are joined by an Session ID, one indicates the start of the session, the other the end of the session.
I want to use the timestamps as from/to parameters in a data link.
Time 1 (from left of join) is renamed Start
Time 2 (from right of join) is renamed End
My current data link syntax is:
http://grafana… monitor?orgId=1&from=${__value.time}&to=${__data.fields.End}&var-runid=${__data.fields.runid}
This correctly renders _time.value as Epoch time, but End is rendered as a formatted date, which the target dashboard does not understand.
How can I reference the Epoch value of the second time field in the datalink URL?