Hello.
Im having problems when using some data from my postgres database.

Im unable to print that column in grafana even if i cast conver to varchar de data, i only see “No points available”. Any suggestions?
Thanks in advance
in query editor you can view genereated SQL can you look at that and test that manually ?
You need to select 3 columns for Grafana: time, metric (=metric name), value (=metric value).
At the moment you are selecting only 2 + metric name is a metric value in your case.
I ended up working it around like this:
SELECT
$__time(“DATETIME”),
“VALUE” as in
FROM “STORAGE”
WHERE(
$__timeFilter(“DATETIME”)
AND “RELATIVE_ID” = 47) AND “VALUE” != ‘NaN’
ORDER BY 1
Turns out, there were a few NaN values inside the database…
Thanks everyone for your support!