Greetings
i have a SQL table with following schema
create table users (
id uuid primary key,
data real[] not null
);
This data are just some ordered floating point values (sensor data).
Im using Postgres as data source and this query:
select
user.id,
user.data
from users as user;
Now, i want to create a simple Users table in my dashboard with 2 columns:
- User ID
- User DATA as Sparkline graph (or any other graph if possible)
Is this even possible ?
I was trying to override data column type to Sparkline but grafana says “no data”.
Should I format this data to any other format (or maybe i need indices for X axis).