-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored into a standalone application (#22)
- Loading branch information
Showing
33 changed files
with
721 additions
and
14,935 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Package", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "auto", | ||
"program": "pkg", | ||
"args": [ | ||
"-c", "../configuration.yml"//, "--dry-run" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
########################## | ||
# example configuration | ||
########################## | ||
|
||
# API token to interact with the specified Grafana instance | ||
# Base URL of the Grafana instance | ||
grafana-url: "http://localhost:3000" | ||
# SSH-URL of the Git repository to use | ||
private-key-file: "<PRIVATE_KEY_FILE>" | ||
# Private key to use for authentication against the Git repository | ||
|
||
# push (export) related configurations | ||
push-configuration: | ||
# whether to export dashboards | ||
enable: true | ||
# the branch to use for exporting dashboards | ||
# only dashboards with match this pattern will be considered in the sync process | ||
filter: "" | ||
# the tag to determine which dashboards should be exported | ||
# 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 | ||
# only dashboards with match this pattern will be considered in the sync process | ||
filter: "" |
Oops, something went wrong.