Grafana panel time stamp - decrepancy with MySQL timestamp

Hello, I have MySQL DB in UTC. I am using it as data source. Grafana is set to Default - UTC+2. I don`t see the events in my dashboard the same, as they are stored in MySQL DB. Is there a document describing this and if not, is there anyone who have dealt with this without any changes to DB?
Thank you.

SELECT
$__timeGroupAlias(datetime,$__interval),
count(some_column) AS “some_alias”
FROM table_name
WHERE
$__timeFilter(datetime) AND
some_column = value
GROUP BY 1
ORDER BY $__timeGroup(datetime,$__interval)

Hello, I have MySQL DB in UTC.

What is the field type for the timestamp?

You should make sure you use Datetime and not Timestamp:

https://dev.mysql.com/doc/refman/8.0/en/datetime.html

I am using it as data source. Grafana is set to Default - UTC+2. I don`t see
the events in my dashboard the same, as they are stored in MySQL DB.

What is the difference?

Are you simply saying that the display is shifted by two hours, or is there
some other difference in what you see in Grafana and what you have in MySQL?

Antony.

Hi, display is lagging by 2 hours. If in DB time stamp is 8:00, I will see it as 10:00 at 10:00.