KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
grafana-sync
★ 11
Open GitHub ↗
Keeps your Grafana dashboards in sync
Download README (.md)
Explore Similar Repositories
vue-unit-test-demo
:
vue-unit-test = vue-test-utils + jest
tars
:
The Threat Actor Rosetta Stone (TARS) is a public listing to keep track of who keeps calling which actor groups by which names.
springboot-mybatis
:
springboot整合常用配置
Deep_Sort-Tracker
:
Simple Online and Realtime Tracking with a Deep Association Metric
lempo
:
LEMPO (Ldap Exposure on POrtainer) is an exploit for CVE-2018-19466 (LDAP Credentials Disclosure on Portainer). Featured @ DevFest Siberia 2018
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
grafana-sync
?
Download (.md)
### grafana-sync - Keeps your Grafana dashboards in sync At each time that it's run, `grafana-sync` gathers information about dashboards from a particular source of truth (a grafana deployment) and then updates the state of the filesystem to reflect such source. ps.: assumes use of the `folders` feature from grafana 5+ ### Usage ``` Usage: grafana-sync [OPTIONS] Application Options: --address= grafana address (default: http://localhost:3000) --directory= directory where dashboards live (default: ./) -v, --verbose displays requests on stderr Authentication: -u, --username= basic auth username -p, --password= basic auth password --access-token= access token to authenticate against grafana Help Options: -h, --help Show this help message ``` 1. Create an API key that is capable of visualizing all dashboards  2. Run `grafana-sync` ```sh ./grafana-sync \ --verbose \ --address http://my-instance.com \ --access-token=<api_key> \ --directory=./dashboards ``` Alternatively, you can also use basic auth (if configured): ```sh ./grafana-sync \ --verbose \ --address http://my-instance.com \ --username=admin \ --password=password \ --directory=./dashboards ```