A Python-based application to backup Grafana settings using the Grafana API.
The aim of this tool is to:
- Easily backup and restore Grafana.
- Have versioned backups
(date and time in file name)
for restoring.
- Folder
- Dashboard (contains Alert)
- Datasource
- Alert Channel
- Organization (Needs Basic Authentication (username and password, see grafana doc)
- You need to set
Admin's account and password
ingrafanaSettings.json
, or set the base64 encodedadmin account and password
in ENVGRAFANA_BASIC_AUTH
. E.gexport GRAFANA_BASIC_AUTH=YWRtaW46YWRtaW4=
- Or Sets this ENV of the Grafana server
GF_USERS_ALLOW_ORG_CREATE=true
. see grafana doc
- You need to set
- User (Needs Basic Authentication (username and password, see grafana doc)
- You need to set
Admin's account and password
ingrafanaSettings.json
, or set the base64 encodedadmin account and password
in ENVGRAFANA_BASIC_AUTH
. E.gexport GRAFANA_BASIC_AUTH=YWRtaW46YWRtaW4=
- Grafana's api doesn't provide user's password when backing up, so the
default_password (which is in the grafanaSetting.json)
will be used when restoring.
- You need to set
- Bash
- Python 3.x
- Access to a Grafana API server.
- A
Token
of anAdmin
role (seeConfiguration
section below for more info)
There are three ways to setup the configuration:
- Use
environment variables
to define the variables for connecting to a Grafana server. - Use
hard-coded settings
inconf/grafanaSettings.json
(this is the default settings file if not specified otherwise). - Use
~/.grafana-backup.json
to define variables in json format.
NOTE If you use environment variables
, you need to add the following to your .bashrc
or execute once before using the tool (please change variables according to your setup):
(GRAFANA_HEADERS
is optional, use it if necessary. please see #45)
### Do not use a trailing slash on GRAFANA_URL
export GRAFANA_URL=http://some.host.org:3000
export GRAFANA_TOKEN=eyJrIjoidUhaU2ZQQndrWFN3RRVkUnVfrT56a1JoaG9KWFFObEgiLCJuIjoiYWRtaW4iLCJpZCI6MX0=
# GRAFANA_HEADERS is optional
export GRAFANA_HEADERS=Host:some.host.org
To create and obtain a Token
for your Grafana server, please refer to the official documentation.
NOTE that you need to generate a Token
with an Admin
role for the backup to succeed, otherwise you will have potential permission issues.
Create a virtualenv, you could using something like pyenv
if you'd prefer
virtualenv -p $(which python3) venv
source venv/bin/activate
pip install grafana-backup
First clone this repo
git clone https://github.com/ysde/grafana-backup-tool.git
cd grafana-backup-tool
Installation works best using pip
pip install .
- First perform the Configuration and Installation sections as described above.
- Use the
grafana-backup save
command to backup all your folders, dashboards, datasources and alert channels to the_OUTPUT_
subdirectory of the current directory.
Example:
$ grafana-backup save
$ tree _OUTPUT_
_OUTPUT_/
└── 202006272027.tar.gz
- Use the
grafana-backup restore <archive_file>
command with a path to a previous backup to restore everything.
NOTE this may result in data loss, by overwriting data on the server.
Example:
$ grafana-backup restore _OUTPUT_/202006272027.tar.gz