Grafana Support enhancements #936
-
Following up the discussion started here: #935 (reply in thread)
This enhancement would be really appreciated. Cheers, Hugo |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Hi Hugo, thanks for creating the new thread. Can you share a bit more details, such as db schema, sample data, and SQL, ideally with screenshot of Grafana dashboard for ClickHouse and Timeplus, so that we can reproduce and enhance this. |
Beta Was this translation helpful? Give feedback.
Hi @hugo-catlas
You can just use the Transformations feature of Grafana to convert the result of Proton into the time series format.
This is what I got with my testing data
SQL: select window_start, avg(total_km) as km, cid from hop(car_live_data,3s, 3s) where (cid='c00006' or cid='c00001') group by cid, window_start
Please let me know if this works or not. Thanks!