-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vikram Jakhar
committed
Jul 26, 2018
1 parent
e38a3a1
commit f24c272
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# GDE (Grafana Dashboard Exporter) | ||
|
||
GDE is an extremely powerful solution for backing up grafana dashboards. It's based on the influxdata telegraf theme. | ||
|
||
# Installation Procedure of GDE Agent | ||
##### Step 1: Download the [binary](https://github.com/vikramjakhr/grafana-dashboard-exporter/releases/releases/latest). Example command below. | ||
``` | ||
wget https://github.com/vikramjakhr/grafana-dashboard-exporter/releases/download/beta-v1.0.0/gde.tar.gz | ||
``` | ||
# Sample GDE config (/etc/gde/gde.conf) | ||
``` | ||
[agent] | ||
interval = "5m" | ||
round_interval = true | ||
debug = true | ||
quiet = false | ||
logfile = "/var/log/gde/gde.log" | ||
[[outputs.file]] | ||
output_dir = "<dir>" # required | ||
output_format = "zip" # zip, dir | ||
[[outputs.s3]] | ||
bucket = "<bucket-name>" # required | ||
access_key = "" | ||
secret_key = "" | ||
region = "" | ||
bucket_prefix = "" | ||
output_format = "zip" # zip, dir | ||
[[inputs.grafana]] | ||
host = "http://<grafana-host>" | ||
authorization = "Bearer <token>" | ||
datasource = true | ||
dashboard = true | ||
org = true | ||
``` |