Skip to content
Snippets Groups Projects
create_snapshot.py 921 B
Newer Older
Felix Sperling's avatar
Felix Sperling committed
import json
from grafana_backup.dashboardApi import create_snapshot


def main(args, settings, file_path):
    grafana_url = settings.get('GRAFANA_URL')
    http_post_headers = settings.get('HTTP_POST_HEADERS')
    verify_ssl = settings.get('VERIFY_SSL')
    client_cert = settings.get('CLIENT_CERT')
    debug = settings.get('DEBUG')

    with open(file_path, 'r') as f:
        data = f.read()

    snapshot = json.loads(data)
    try:
        snapshot['name'] = snapshot['dashboard']['title']
    except KeyError:
        snapshot['name'] = "Untitled Snapshot"

    (status, content) = create_snapshot(json.dumps(snapshot), grafana_url, http_post_headers, verify_ssl, client_cert, debug)
    if status == 200:
        print("create snapshot: {0}, status: {1}, msg: {2}".format(snapshot['name'], status, content))
    else:
        print("creating snapshot {0} failed with status {1}".format(snapshot['name'], status))