Hello, i have been working with grafana since 2 days and I’m wondering if you can help we with configuration my dashboard.
I’m tracking my current consumption of my appartment via iobroker into a MariaDB. I have access via grafana to my DB but I do not know how i can group the collected data per day.
I do not use the query builder as you have done. If you switch to code (on the far right), you should be able to enter your SQL query that includes the GROUP BY statement. For example:
SELECT count(*), record_date FROM anytable WHERE anytable.anycolumn = 'anycondition' GROUP BY YEAR(record_date), month(record_date);