Upgrade to Grafana v13.0
We recommend that you upgrade Grafana often to stay current with the latest fixes and enhancements. Because Grafana upgrades are backward compatible, the upgrade process is straightforward, and dashboards and graphs will not change.
In addition to common tasks you should complete for all versions of Grafana, there might be additional upgrade tasks to complete for a version.
Note
There might be breaking changes in some releases. We outline all these changes in the What’s New document.
For versions of Grafana prior to v9.2, we published additional information in the Release Notes.
When available, we list all changes with links to pull requests or issues in the Changelog.
Note
When possible, we recommend that you test the Grafana upgrade process in a test or development environment.
Back up Grafana
This topic explains how to back up a local Grafana deployment, including configuration, plugin data, and the Grafana database.
Back up the Grafana configuration file
Copy Grafana configuration files that you might have modified in your Grafana deployment to a backup directory.
The Grafana configuration files are located in the following directories:
- Default configuration:
$WORKING_DIR/defaults.ini(Don’t change this file) - Custom configuration:
$WORKING_DIR/custom.ini
For more information on where to find configuration files, refer to Configuration file location.
Note
If you installed Grafana using the
deborrpmpackages, then your configuration file is located at/etc/grafana/grafana.ini. This path is specified in the Grafanainit.dscript using--configfile parameter.
Back up plugin data
Installing plugins in Grafana creates a folder for each plugin with its associated files and data. Copy all files and folders recursively from this location to your backup repository.
The Grafana plugin files are located in the following directories:
- Default location for plugins in a binary or source installation:
$WORKING_DIR/data/plugins - Default location for plugins in a
deborrpmpackage:/var/lib/grafana/plugins. This path is specified in the Grafana init.d script using--configfile parameter.
Back up the Grafana database
We recommend that you back up your Grafana database so that you can roll back to a previous version, if required.
SQLite
The default Grafana database is SQLite, which stores its data in a single file on disk. To back up this file, copy it to your backup repository.
Note
To ensure data integrity, shut down your Grafana service before backing up the SQLite database.
The SQLite database file is located in one of the following directories:
- Default location for SQLite data in a binary or source installation:
$WORKING_DIR/data/grafana.db - Default location for SQLite data in a
deborrpmpackage:/var/lib/grafana/grafana.db. This path is specified in the Grafana init.d script using--configfile parameter.
MySQL
To back up or restore a MySQL Grafana database, run the following commands:
backup:
> mysqldump -u root -p[root_password] [grafana] > grafana_backup.sql
restore:
> mysql -u root -p grafana < grafana_backup.sqlPostgres
To back up or restore a Postgres Grafana database, run the following commands:
backup:
> pg_dump grafana > grafana_backup
restore:
> psql grafana < grafana_backupUpgrade Grafana
The following sections provide instructions for how to upgrade Grafana based on your installation method. For more information on where to find configuration files, refer to Configuration file location.
Debian
To upgrade Grafana installed from a Debian package (.deb), complete the following steps:
In your current installation of Grafana, save your custom configuration changes to a file named
<grafana_install_dir>/grafana.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Download the latest version of Grafana.
Run the following
dpkg -icommand.wget <debian package url> sudo apt-get install -y adduser sudo dpkg -i grafana_<version>_amd64.deb
APT repository
To upgrade Grafana installed from the Grafana Labs APT repository, complete the following steps:
In your current installation of Grafana, save your custom configuration changes to a file named
<grafana_install_dir>/grafana.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Run the following commands:
sudo apt-get update sudo apt-get upgrade
Grafana automatically updates when you run apt-get upgrade.
Binary .tar file
To upgrade Grafana installed from the binary .tar.gz package, complete the following steps:
In your current installation of Grafana, save your custom configuration changes to the custom configuration file,
custom.iniorgrafana.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Download the binary
.tar.gzpackage.Extract the downloaded package and overwrite the existing files.
RPM or YUM
To upgrade Grafana installed using RPM or YUM complete the following steps:
In your current installation of Grafana, save your custom configuration changes to a file named
<grafana_install_dir>/grafana.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Perform one of the following steps based on your installation.
If you downloaded an RPM package to install Grafana, then complete the steps documented in Install Grafana on Red Hat, RHEL, or Fedora or Install Grafana on SUSE or openSUSE to upgrade Grafana.
If you used the Grafana YUM repository, run the following command:
sudo yum update grafanaIf you installed Grafana on openSUSE or SUSE, run the following command:
sudo zypper update
Docker
To upgrade Grafana running in a Docker container, complete the following steps:
Use Grafana environment variables to save your custom configurations; this is the recommended method. Alternatively, you can view your configuration files manually by accessing the deployed container.
This enables you to upgrade Grafana without the risk of losing your configuration changes.
Run a commands similar to the following commands.
Note
This is an example. The parameters you enter depend on how you configured your Grafana container.
docker pull grafana/grafana docker stop my-grafana-container docker rm my-grafana-container docker run -d --name=my-grafana-container --restart=always -v /var/lib/grafana:/var/lib/grafana grafana/grafana
Windows
To upgrade Grafana installed on Windows, complete the following steps:
In your current installation of Grafana, save your custom configuration changes to a file named
<grafana_install_dir>/conf/custom.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Download the Windows binary package.
Extract the contents of the package to the location in which you installed Grafana.
You can overwrite existing files and folders, when prompted.
Mac
To upgrade Grafana installed on Mac, complete the following steps:
In your current installation of Grafana, save your custom configuration changes to the custom configuration file,
custom.ini.This enables you to upgrade Grafana without the risk of losing your configuration changes.
Download the Mac binary package.
Extract the contents of the package to the location in which you installed Grafana.
You can overwrite existing files and folders, when prompted.
Update Grafana plugins
After you upgrade Grafana, we recommend that you update all plugins because a new version of Grafana can make older plugins stop working properly.
Run the following command to update plugins:
grafana cli plugins update-allTechnical notes
React 19 related updates
As part of the migration to React 19 in Grafana 13, make the following updates to ensure that your plugins are working properly and you don’t experience any disruptions during the Grafana 13 upgrade.
Follow this sequence for best results:
Upgrade your Grafana to latest patch version for the version you are running
To ensure that the changes required for the upgrade to React 19 are in place in your Grafana version, update to the latest minor version available for your Grafana instance. You can check the available versions on the downloads page.
Update all of your plugins
Update all of your installed plugins and check if they are still working properly. By using the latest version of a plugin you facilitate support to React 19.
Upgrade to Grafana 13
Finally you can continue your upgrade to Grafana 13.
Deprecated data source APIs disabled
Data source APIs that reference data sources by numeric id have been deprecated since Grafana 9.
In Grafana 13, they’re disabled by default.
You are affected if
You use data source API endpoints that reference data sources by numeric id rather than uid.
Migration
Update your API calls to reference data sources by uid instead of numeric id.
To temporarily re-enable the deprecated APIs, enable the datasourceLegacyIdApi feature flag.
Both the deprecated APIs and the feature toggle will be removed in a future release.
Image Renderer plugin support removed
In Grafana 13, support for the Image Renderer plugin is removed.
You are affected if
You run the Image Renderer as a Grafana plugin. After upgrading, the plugin no longer works for rendering screenshots or scheduled reports.
Migration
Deploy the image renderer as a separate service alongside Grafana. For setup instructions, refer to Set up image rendering.
Image Renderer default authentication changed to JWTs
The Image Renderer previously authenticated with Grafana using opaque tokens stored in the database when generating screenshots and PDFs. Grafana v13.0 enables the renderAuthJWT feature toggle by default, which switches authentication to stateless JSON Web Tokens (JWTs) that don’t depend on the database.
Action required
After upgrading to Grafana v13.0, if you use the Image Renderer, you must set a [rendering]renderer_token in your Grafana configuration file to a value that isn’t empty or the default value (-), and configure the Image Renderer with the same token value. Restart your Grafana instance for the changes to take effect.
For more information, refer to the Image Renderer security configuration documentation.
Reverting to the previous behavior
After upgrading to Grafana v13.0, to revert to opaque token authentication, disable the feature toggle in your Grafana configuration file:
[feature_toggles]
renderAuthJWT = falseRestart your Grafana instance for the changes to take effect.
Unified storage for folders and dashboards
Grafana v13.0 automatically migrates folders and dashboards from the legacy SQL database to unified storage on startup.
The migration runs once and is tracked in the unifiedstorage_migration_log table.
After the migration completes, the following legacy tables are deprecated:
dashboarddashboard_acldashboard_provisioningdashboard_versiondashboard_taglibrary_element_connectionfolder
These tables will be removed in a future release.
If you downgrade to an earlier Grafana version after the migration, the older version reads the stale legacy tables and doesn’t reflect changes made in unified storage. To roll back, restore from the database backup you took before upgrading.
If you downgrade and then upgrade again without restoring a backup, any folders or dashboards created or modified during the downgrade aren’t migrated automatically. If a backup isn’t available, contact Grafana support for assistance.
SQLite deployments
If you use SQLite, the migration might fail with database is locked or database table is locked errors due to lock contention.
Grafana automatically retries using the Parquet buffer, but if errors persist, increase migration_cache_size_kb or enable migration_parquet_buffer in the [unified_storage] section of your configuration file:
Removal of grafana-cli and grafana-server commands
The grafana-cli and grafana-server commands, deprecated since Grafana v10.0, are removed in Grafana v13.0.
Update any scripts, systemd units, Docker entrypoints, CI pipelines, or other automation to use grafana cli and grafana server instead.
Legacy Alertmanager configuration API endpoints changed
Several legacy Alertmanager configuration API endpoints are removed or restricted in Grafana v13.0:
DELETE /api/alertmanager/grafana/config/api/v1/alertsis removed.POST /api/alertmanager/grafana/config/api/v1/receivers/testis removed.GET /api/alertmanager/grafana/config/api/v1/alertsis restricted to admin users.GET /api/alertmanager/grafana/config/historyis restricted to admin users.POST /api/alertmanager/grafana/config/history/{id}/_activateis restricted to admin users.
You are affected if
You call any of these endpoints in automation scripts, Terraform providers, or custom tooling.
Migration
Migrate to the Kubernetes-style resource APIs under notifications.alerting.grafana.app/v1beta1:
Alertmanager status endpoint requires a new permission
You are affected if
You use the GET /api/alertmanager/grafana/api/v2/status endpoint and rely on the alert.notifications:read permission to access it.
Description
The GET /api/alertmanager/grafana/api/v2/status endpoint previously required the legacy alert.notifications:read permission. It now requires a dedicated alert.notifications.system-status:read permission. This new permission is included in the fixed:alerting.notifications:writer role, which is granted to Admin users by default.
Migration
If you have custom roles that need access to this endpoint, add the alert.notifications.system-status:read action to those roles. Admin users are unaffected as they receive this permission automatically through the built-in alerting notifications writer role.


