Europe/Berlin
or +02:00
.
This is necessary, if the timezone of the database (or the host of the database) is set to something other than UTC.
The value is set in the session with SET time_zone='...'
. If you leave this field empty,
the timezone is not updated. You can find more information in the
MySQL documentation.
1m
if your data is written every minute.
The database user should only be granted SELECT permissions on the specified database & tables you want to query.
Grafana does not validate that queries are safe so queries can contain any SQL statement. For example, statements
like USE otherdb;
and DROP TABLE user;
would be executed. To protect against this we
Highly recommmend you create a specific MySQL user with restricted permissions.
Checkout the MySQL Data Source Docs for more information.