Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kennytm/grafana-export

Export Grafana dashboard snapshots as local JSON files
https://github.com/kennytm/grafana-export

Last synced: about 2 months ago
JSON representation

Export Grafana dashboard snapshots as local JSON files

Awesome Lists containing this project

README

        

# PingCAP MetricsTool

This repository hosts the source code of the website https://metricstool.pingcap.com/, as well as the CLI tool `grafsnap`.

## Deploying the website

You need to first install NodeJS, Yarn 1 and GNU make. The website are pre-compressed, so you need to upload to an S3 server to view it.

```sh
# make sure the Grafana snapshot visualizer is ready.
git submodule update --init

# run `make website` **twice** to build it
make website
make website

# deploy the website on S3
make upload AWS_PROFILE=minio AWS_ENDPOINT_URL='http://127.0.0.1:9000' TARGET='s3://test-website/'
```