Skip to content

Commit

Permalink
Merge pull request #443 from IntersectMBO/fix/442-resolve-grafana-das…
Browse files Browse the repository at this point in the history
…hboard-configuration-datasource-issue

[#442] Resolve grafana dashboard configuration datasource issue
  • Loading branch information
placek authored Mar 12, 2024
2 parents 68422ac + aaedd40 commit cf3276a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@
{
"datasource": {
"type": "loki",
"uid": "b0d64f25-3bca-4cc1-b8f3-6b391d88b442"
"uid": "a698987a-0cba-42a9-86aa-3ba65104ef72"
},
"description": "Trace of every deploy made on this machine. This is a good place to start when something goes wrong.",
"gridPos": {
Expand All @@ -888,7 +888,7 @@
{
"datasource": {
"type": "loki",
"uid": "b0d64f25-3bca-4cc1-b8f3-6b391d88b442"
"uid": "a698987a-0cba-42a9-86aa-3ba65104ef72"
},
"editorMode": "builder",
"expr": "{filename=\"/var/log/deployment.log\"}",
Expand Down Expand Up @@ -916,6 +916,6 @@
"timezone": "",
"title": "GovTool basic stats",
"uid": "e3697f62-6a01-4596-b626-d46141441b32",
"version": 44,
"version": 50,
"weekStart": ""
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ deleteDatasources:
datasources:
# <string, required> name of the datasource. Required
- name: Prometheus
# <string> datasource UID.
uid: PBFA97CFB590B2093
# <string, required> datasource type. Required
type: prometheus
# <string, required> access mode. direct or proxy. Required
Expand Down Expand Up @@ -51,6 +53,8 @@ datasources:

# <string, required> name of the datasource. Required
- name: Loki
# <string> datasource UID.
uid: a698987a-0cba-42a9-86aa-3ba65104ef72
# <string, required> datasource type. Required
type: loki
# <string, required> access mode. direct or proxy. Required
Expand All @@ -74,9 +78,6 @@ datasources:
# <bool> enable/disable with credentials headers
withCredentials:
# <bool> mark as default datasource. Max one per org
# <bool> enable/disable basic auth
basicAuth: false
# <bool> mark as default datasource. Max one per org
isDefault: false
version: 1
# <bool> allow users to edit datasources from the UI.
Expand Down
4 changes: 2 additions & 2 deletions scripts/govtool/utils.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ssh:
export TERM=xterm-256color; \
ssh $(ssh_url)

.PHONY: docker
docker:
.PHONY: docker-compose
docker-compose:
@:$(call check_defined, cardano_network)
@:$(call check_defined, env)
@:$(call check_defined, cmd)
Expand Down

0 comments on commit cf3276a

Please sign in to comment.