Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In the timeseries, I see wrong date when I hover over the values #86956

Open
kavyarkolli opened this issue Apr 25, 2024 · 2 comments
Open

In the timeseries, I see wrong date when I hover over the values #86956

kavyarkolli opened this issue Apr 25, 2024 · 2 comments
Labels
area/panel/timeseries The main time series Graph panel area/tooltip needs more info Issue needs more information, like query results, dashboard or panel json, grafana version etc

Comments

@kavyarkolli
Copy link

What happened?

Every grouping in grafana is showing left edge value instead of actual grouping, for 2024-04 its showing 2024-03-31 19:00:00, and the same goes to every other month.
Here is the query I am using
SELECT
STR_TO_DATE(created_at, '%Y-%m') as time,manufacturer as metric,
sum(uuid_count)
FROM (
SELECT
created_at,manufacturer,
COUNT(uuid) AS uuid_count
FROM
storages_v2
WHERE
$__timeFilter(created_at) AND
deleted_at IS NULL
GROUP BY 1,2
ORDER BY 1
) AS subquery group by 1,2;

What did you expect to happen?

Screenshot 2024-04-25 173107
To show the actual date instead of previous day date

Did this work before?

I am a new user

How do we reproduce it?

Is the bug inside a dashboard panel?

No response

Environment (with versions)?

Grafana:
OS:
Browser:

Grafana platform?

None

Datasource(s)?

No response

@leeoniya
Copy link
Contributor

please fill out the form. there is too much info missing here.

also, attach a debug snapshot: https://grafana.com/docs/grafana/latest/troubleshooting/send-panel-to-grafana-support

@leeoniya leeoniya added area/panel/timeseries The main time series Graph panel area/tooltip bot/needs more info Bot will request more info labels Apr 25, 2024
@grafanabot
Copy link
Contributor

Thanks for creating this issue! We think it's missing some basic information.

Follow the issue template and add additional information that will help us replicate the problem.
For data visualization issues:

  • Query results from the inspect drawer (data tab & query inspector)
  • Panel settings can be extracted in the panel inspect drawer JSON tab

For dashboard related issues:

  • Dashboard JSON can be found in the dashboard settings JSON model view

For authentication, provisioning and alerting issues, Grafana server logs are useful.

Happy graphing!

@grafanabot grafanabot added needs more info Issue needs more information, like query results, dashboard or panel json, grafana version etc and removed bot/needs more info Bot will request more info labels Apr 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/panel/timeseries The main time series Graph panel area/tooltip needs more info Issue needs more information, like query results, dashboard or panel json, grafana version etc
Projects
None yet
Development

No branches or pull requests

3 participants