-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard_export.py
49 lines (40 loc) · 1.54 KB
/
dashboard_export.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Usage:
# python ./dashboard_export.py --redash-url http://10.7.0.4:33080/ --api-key P4KlA0AM4JwYA1M6aNoydt5GVfMmZHQ5CVVexEZK
#
import click
import requests
import re
import json
def get_dashboards(url, api_key):
headers = {'Authorization': 'Key {}'.format(api_key)}
path = "{}/api/dashboards".format(url)
has_more = True
page = 1
newRoute = False
while has_more:
response = requests.get(path, headers=headers, params={'page': page}).json()
for result in response['results']:
if not newRoute:
dashboard_resp = requests.get("{}/{}".format(path, result['slug']), headers=headers)
dashboard = dashboard_resp.json()
if newRoute or dashboard_resp.status_code == 500:
dashboard = requests.get("{}/{}".format(path, result['id']), headers=headers).json()
newRoute = True
save_dashboard(dashboard)
has_more = page * response['page_size'] + 1 <= response['count']
page += 1
return
def save_dashboard(dashboard):
dashboardName = re.sub(r"\W+", '_', dashboard['name'])
filename = 'dashboard_{}_{}.json'.format(dashboard['id'], dashboardName)
with open(filename, 'w') as f:
f.write(json.dumps(dashboard, indent=2))
print('Generated: {}'.format(filename))
@click.command()
@click.option('--redash-url')
@click.option('--api-key', help="API Key")
def main(redash_url, api_key):
get_dashboards(redash_url, api_key)
if __name__ == '__main__':
main()