-
Notifications
You must be signed in to change notification settings - Fork 9
/
configuration.yml
37 lines (34 loc) · 1.34 KB
/
configuration.yml
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
##########################
# example configuration
##########################
- job-name: "example-job"
# API token to interact with the specified Grafana instance
grafana-token: "eyJrIjoiSEp4dzhGdVBxMUhBdm5Db..."
# Base URL of the Grafana instance
grafana-url: "http://localhost:3000"
# SSH-URL of the Git repository to use
git-repository-url: "<GIT_REPOSITORY_URL>"
# Private key to use for authentication against the Git repository
private-key-file: "<PRIVATE_SSH_KEY>"
# push (export) related configurations
push-configuration:
# whether to export dashboards
enable: true
# the branch to use for exporting dashboards
git-branch: "push-branch"
# only dashboards with match this pattern will be considered in the sync process.
# this value is a WHITELIST in case it is not empty!
filter: ""
# the tag to determine which dashboards should be exported
tag-pattern: "sync"
# whether the sync-tag should be kept during exporting
push-tags: true
# pull (import) related configurations
pull-configuration:
# whether to import dashboards
enable: true
# the branch to use for importing dashboards
git-branch: "pull-branch"
# only dashboards with match this pattern will be considered in the sync process.
# this value is a WHITELIST in case it is not empty!
filter: ""