Skip to content

Commit

Permalink
README added
Browse files Browse the repository at this point in the history
  • Loading branch information
Vikram Jakhar committed Jul 26, 2018
1 parent e38a3a1 commit f24c272
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions README.md
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
```

0 comments on commit f24c272

Please sign in to comment.