You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-9
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,16 @@
3
3
A small CLI tool to do a tag-base automatic synchornization and backup Grafana of dashboards across multiple Grafana instances.
4
4
5
5
This application can be used to synchronize dashboards, using a Git repository, across multiple Grafana instances.
6
-
A possible use case is: push Grafana dashboards from one Grafana instance to a Git repository and import them into another Grafana instance. In addition, users can use tags to determine for themselves when a dashboard should be synchronized.
6
+
A possible use cases:
7
+
- Backup certain dashboards regularly using a Git repository
8
+
- Push Grafana dashboards from one Grafana instance to a Git repository and import them into another Grafana instance. In addition, users can use tags to determine for themselves when a dashboard should be synchronized.
9
+
- Preload new Grafana instances with predefined dashboards.
7
10
8
-
As an example this is useful to stage dashboards from "dev" to "prod" environments.
11
+
#### Example Usecase
9
12
10
-
The special thing is that the synchronization of dashboards is based on tags, which can be created by the users themselves. Thus, users can determine when a dashboard is ready for synchronization, e.g. so that it is synchronized from a "dev" to a "prod" environment.
13
+
This can be useful to stage dashboards from "dev" to "prod" environments.
11
14
12
-
If a dashboard is imported to Grafana but a dashboard with the same name or ID already exists there, it will be overwritten. For security reasons, dashboards **are not deleted** by the application. If a dashboard is obsolete, it must be deleted manually by the user.
15
+

13
16
14
17
## Usage
15
18
@@ -59,11 +62,10 @@ See the following configuration for available configuration options:
59
62
enable: true
60
63
# the branch to use for exporting dashboards
61
64
git-branch: "push-branch"
62
-
# only dashboards with match this pattern will be considered in the sync process.
63
-
# this value is a WHITELIST in case it is not empty!!!
65
+
# only dashboards with match this pattern will be considered in the sync process
64
66
filter: ""
65
67
# the tag to determine which dashboards should be exported
66
-
tag-pattern: "sync"
68
+
tag-pattern: "agent"
67
69
# whether the sync-tag should be kept during exporting
68
70
push-tags: true
69
71
@@ -73,8 +75,7 @@ See the following configuration for available configuration options:
73
75
enable: true
74
76
# the branch to use for importing dashboards
75
77
git-branch: "pull-branch"
76
-
# only dashboards with match this pattern will be considered in the sync process.
77
-
# this value is a WHITELIST in case it is not empty!!!
78
+
# only dashboards with match this pattern will be considered in the sync process
0 commit comments