Hi I’m using self hosted Grafana v9 to visualize some of my website metrics. In one panel I want to show how many singin does my website have perday. Iam using myslq plugin and my time column is created_at. I created the panel but results are not grouped per day. this is my panel image
and here is my mysql query
SELECT
$__timeGroupAlias(created_at,$__interval),
count(session_id) AS "session_id"
FROM session_user
WHERE
$__timeFilter(created_at)
GROUP BY 1
ORDER BY $__timeGroup(created_at,$__interval)
how can I group my result per day