-
What Grafana version and what operating system are you using?
v8.5.4 -
What are you trying to achieve?
Create a in Time Series chart for data grouped over Months
SELECT
$__timeGroupAlias(time,1M),
count(number) AS "number"
FROM incident
WHERE
$__timeFilter(time)
GROUP BY 1
ORDER BY $__timeGroup(time,1M)
-
How are you trying to achieve it?
My data is in MYSQL and I am creating line chart using MySQL query -
What happened?
Start of the month is shown as some Random date rather than 1st of month in Time Series chart. -
What did you expect to happen?
Start of the month should be 1st of month -
Help I need?
Is there way I can have Start of the Month in Time Series chart?