Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Commits
51443b7b
Verified
Commit
51443b7b
authored
2 months ago
by
Martin Weise
Browse files
Options
Downloads
Patches
Plain Diff
Updated stuff
Signed-off-by:
Martin Weise
<
martin.weise@tuwien.ac.at
>
parent
f72c403a
No related branches found
No related tags found
1 merge request
!411
WIP
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.docker/docker-compose.yml
+67
-6
67 additions, 6 deletions
.docker/docker-compose.yml
docker-compose.yml
+2
-0
2 additions, 0 deletions
docker-compose.yml
helm/dbrepo/files/dbrepo.json
+315
-66
315 additions, 66 deletions
helm/dbrepo/files/dbrepo.json
make/dev.mk
+5
-1
5 additions, 1 deletion
make/dev.mk
with
389 additions
and
73 deletions
.docker/docker-compose.yml
+
67
−
6
View file @
51443b7b
...
...
@@ -131,7 +131,7 @@ services:
restart
:
"
no"
container_name
:
dbrepo-data-db
hostname
:
data-db
image
:
docker.io/bitnami/mariadb:${MARIADB_VERSION}
image
:
docker.io/bitnami/mariadb
-galera
:${MARIADB_VERSION}
volumes
:
-
data-db-data:/var/lib/mysql
-
./config/1_grant-user.sql:/docker-entrypoint-initdb.d/1_grant-user.sql
...
...
@@ -141,15 +141,42 @@ services:
dbrepo-logging-service
:
condition
:
service_healthy
environment
:
MARIADB_
EXTRA_FLAGS
:
"
${DATA_DB_EXTRA_FLAGS:---max_connections=155
--max-statement-time=60
}"
MARIADB_
GALERA_MARIABACKUP_PASSWORD
:
"
${DATA_DB_BACKUP_PASSWORD:-dbrepo
}"
MARIADB_PASSWORD
:
"
${READONLY_PASSWORD:-readonly}"
MARIADB_ROOT_PASSWORD
:
"
${DATA_DB_PASSWORD:-dbrepo}"
MARIADB_SKIP_TEST_DB
:
"
yes"
MARIADB_USER
:
"
${READONLY_USERNAME:-readonly}"
healthcheck
:
test
:
/opt/bitnami/scripts/mariadb/healthcheck.sh --connect --innodb_initialized
test
:
/opt/bitnami/scripts/mariadb
-galera
/healthcheck.sh --connect --innodb_initialized
<<
:
*healthcheck-params
deploy
:
<<
:
*resources-micro-hm
<<
:
*resources-xlarge
logging
:
driver
:
fluentd
options
:
fluentd-address
:
127.0.0.1:24224
tag
:
mariadb.data
dbrepo-data-db-metrics
:
restart
:
"
no"
container_name
:
dbrepo-data-db-metrics
hostname
:
data-db-metrics
image
:
docker.io/bitnami/mysqld-exporter:${MYSQLD_EXPORTER_VERSION}
command
:
-
--mysqld.address=data-db:3306
-
--config.my-cnf=/.my.cnf
volumes
:
-
./dbrepo-data-db/metrics.cnf:/.my.cnf
healthcheck
:
test
:
-h
<<
:
*healthcheck-params
deploy
:
<<
:
*resources-nano
depends_on
:
dbrepo-data-db
:
condition
:
service_healthy
dbrepo-logging-service
:
condition
:
service_healthy
logging
:
driver
:
fluentd
options
:
...
...
@@ -182,6 +209,31 @@ services:
fluentd-address
:
127.0.0.1:24224
tag
:
postgres.auth
dbrepo-dashboard-db
:
restart
:
"
no"
container_name
:
dbrepo-dashboard-db
hostname
:
dashboard-db
image
:
docker.io/bitnami/postgresql:${POSTGRES_VERSION}
volumes
:
-
dashboard-db-data:/bitnami/postgresql
depends_on
:
dbrepo-logging-service
:
condition
:
service_healthy
environment
:
POSTGRESQL_DATABASE
:
"
${DASHBOARD_DB_NAME:-grafana}"
POSTGRESQL_USERNAME
:
"
${DASHBOARD_DB_USERNAME:-grafana}"
POSTGRESQL_PASSWORD
:
"
${DASHBOARD_DB_PASSWORD:-dbrepo}"
healthcheck
:
test
:
"
psql
-U
${DASHBOARD_DB_USERNAME:-grafana}
-h
127.0.0.1
-p
5432
-d
${DASHBOARD_DB_NAME:-grafana}
-c
'select
version();'"
<<
:
*healthcheck-params
deploy
:
<<
:
*resources-micro
logging
:
driver
:
fluentd
options
:
fluentd-address
:
127.0.0.1:24224
tag
:
postgres.auth
dbrepo-auth-service
:
restart
:
"
no"
container_name
:
dbrepo-auth-service
...
...
@@ -729,9 +781,18 @@ services:
dbrepo-logging-service
:
condition
:
service_healthy
volumes
:
-
dashboard-ui-data:/opt/bitnami/grafana/data
-
./config/dashboards:/app/dashboards
-
./config/grafana.ini:/opt/bitnami/grafana/conf/grafana.ini
-
./config/ldap.toml:/opt/bitnami/grafana/conf/ldap.toml
-
./config/provisioning/dashboards/provider.yaml:/opt/bitnami/grafana/conf/provisioning/dashboards/provider.yaml
-
./config/provisioning/datasources/infinity.yaml:/opt/bitnami/grafana/conf/provisioning/datasources/infinity.yaml
-
./config/provisioning/datasources/prometheus.yaml:/opt/bitnami/grafana/conf/provisioning/datasources/prometheus.yaml
environment
:
BASE_URL
:
"
${BASE_URL:-http://localhost}"
# do not attempt to set it in the grafana.ini, hours wasted here: 7
DASHBOARD_DB_NAME
:
"
${DASHBOARD_DB_NAME:-grafana}"
DASHBOARD_DB_USERNAME
:
"
${DASHBOARD_DB_USERNAME:-grafana}"
DASHBOARD_DB_PASSWORD
:
"
${DASHBOARD_DB_PASSWORD:-dbrepo}"
GF_SERVER_ROOT_URL
:
http://dashboard-ui:3000/dashboard/
GF_INSTALL_PLUGINS
:
"
yesoreyeram-infinity-datasource,grafana-opensearch-datasource"
GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION
:
"
true"
...
...
@@ -784,7 +845,7 @@ services:
restart
:
"
no"
container_name
:
dbrepo-logging-service
hostname
:
logging-service
image
:
docker.io/bitnami/fluent-bit:
4.0.0
image
:
docker.io/bitnami/fluent-bit:
${FLUENTBIT_VERSION}
ports
:
-
"
24224:24224"
volumes
:
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
2
−
0
View file @
51443b7b
...
...
@@ -562,6 +562,8 @@ services:
healthcheck
:
test
:
wget -O- http://127.0.0.1:8080
<<
:
*healthcheck-params
deploy
:
<<
:
*resources-nano
depends_on
:
dbrepo-analyse-service
:
condition
:
service_healthy
...
...
This diff is collapsed.
Click to expand it.
helm/dbrepo/files/
system
.json
→
helm/dbrepo/files/
dbrepo
.json
+
315
−
66
View file @
51443b7b
...
...
@@ -18,7 +18,7 @@
"editable"
:
true
,
"fiscalYearStartMonth"
:
0
,
"graphTooltip"
:
1
,
"id"
:
3
,
"id"
:
7
,
"links"
:
[
{
"asDropdown"
:
false
,
...
...
@@ -42,6 +42,241 @@
"x"
:
0
,
"y"
:
0
},
"id"
:
52
,
"panels"
:
[],
"title"
:
"Storage"
,
"type"
:
"row"
},
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"fieldConfig"
:
{
"defaults"
:
{
"color"
:
{
"mode"
:
"palette-classic"
},
"custom"
:
{
"axisBorderShow"
:
false
,
"axisCenteredZero"
:
false
,
"axisColorMode"
:
"text"
,
"axisLabel"
:
""
,
"axisPlacement"
:
"auto"
,
"barAlignment"
:
0
,
"barWidthFactor"
:
0.6
,
"drawStyle"
:
"line"
,
"fillOpacity"
:
10
,
"gradientMode"
:
"none"
,
"hideFrom"
:
{
"legend"
:
false
,
"tooltip"
:
false
,
"viz"
:
false
},
"insertNulls"
:
false
,
"lineInterpolation"
:
"smooth"
,
"lineWidth"
:
2
,
"pointSize"
:
5
,
"scaleDistribution"
:
{
"type"
:
"linear"
},
"showPoints"
:
"never"
,
"spanNulls"
:
false
,
"stacking"
:
{
"group"
:
"A"
,
"mode"
:
"none"
},
"thresholdsStyle"
:
{
"mode"
:
"off"
}
},
"mappings"
:
[],
"thresholds"
:
{
"mode"
:
"absolute"
,
"steps"
:
[
{
"color"
:
"green"
,
"value"
:
null
},
{
"color"
:
"red"
,
"value"
:
80
}
]
},
"unit"
:
"short"
},
"overrides"
:
[]
},
"gridPos"
:
{
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
1
},
"id"
:
53
,
"options"
:
{
"alertThreshold"
:
true
,
"legend"
:
{
"calcs"
:
[],
"displayMode"
:
"list"
,
"placement"
:
"bottom"
,
"showLegend"
:
true
},
"tooltip"
:
{
"hideZeros"
:
false
,
"mode"
:
"multi"
,
"sort"
:
"none"
}
},
"pluginVersion"
:
"11.5.3"
,
"targets"
:
[
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"expr"
:
"sum(SeaweedFS_volumeServer_volumes) by (collection, type)"
,
"format"
:
"time_series"
,
"hide"
:
false
,
"intervalFactor"
:
2
,
"legendFormat"
:
"{{collection}} {{type}}"
,
"refId"
:
"A"
},
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"expr"
:
"sum(SeaweedFS_volumeServer_max_volumes)"
,
"format"
:
"time_series"
,
"intervalFactor"
:
2
,
"legendFormat"
:
"Total"
,
"refId"
:
"B"
}
],
"title"
:
"Volume Count"
,
"type"
:
"timeseries"
},
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"fieldConfig"
:
{
"defaults"
:
{
"color"
:
{
"mode"
:
"palette-classic"
},
"custom"
:
{
"axisBorderShow"
:
false
,
"axisCenteredZero"
:
false
,
"axisColorMode"
:
"text"
,
"axisLabel"
:
""
,
"axisPlacement"
:
"auto"
,
"barAlignment"
:
0
,
"barWidthFactor"
:
0.6
,
"drawStyle"
:
"line"
,
"fillOpacity"
:
10
,
"gradientMode"
:
"none"
,
"hideFrom"
:
{
"legend"
:
false
,
"tooltip"
:
false
,
"viz"
:
false
},
"insertNulls"
:
false
,
"lineInterpolation"
:
"smooth"
,
"lineWidth"
:
2
,
"pointSize"
:
5
,
"scaleDistribution"
:
{
"type"
:
"linear"
},
"showPoints"
:
"never"
,
"spanNulls"
:
false
,
"stacking"
:
{
"group"
:
"A"
,
"mode"
:
"none"
},
"thresholdsStyle"
:
{
"mode"
:
"off"
}
},
"mappings"
:
[],
"thresholds"
:
{
"mode"
:
"absolute"
,
"steps"
:
[
{
"color"
:
"green"
,
"value"
:
null
},
{
"color"
:
"red"
,
"value"
:
80
}
]
},
"unit"
:
"bytes"
},
"overrides"
:
[]
},
"gridPos"
:
{
"h"
:
8
,
"w"
:
12
,
"x"
:
12
,
"y"
:
1
},
"id"
:
54
,
"options"
:
{
"alertThreshold"
:
true
,
"legend"
:
{
"calcs"
:
[],
"displayMode"
:
"list"
,
"placement"
:
"bottom"
,
"showLegend"
:
true
},
"tooltip"
:
{
"hideZeros"
:
false
,
"mode"
:
"multi"
,
"sort"
:
"none"
}
},
"pluginVersion"
:
"11.5.3"
,
"targets"
:
[
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"expr"
:
"sum(SeaweedFS_volumeServer_total_disk_size) by (collection, type)"
,
"format"
:
"time_series"
,
"hide"
:
false
,
"intervalFactor"
:
2
,
"legendFormat"
:
"{{collection}} {{type}}"
,
"refId"
:
"A"
},
{
"datasource"
:
{
"type"
:
"prometheus"
,
"uid"
:
"dbrepometrics0"
},
"expr"
:
"sum(SeaweedFS_volumeServer_total_disk_size)"
,
"format"
:
"time_series"
,
"intervalFactor"
:
2
,
"legendFormat"
:
"Total"
,
"refId"
:
"B"
}
],
"title"
:
"Used Disk Space by Collection and Type"
,
"type"
:
"timeseries"
},
{
"collapsed"
:
false
,
"gridPos"
:
{
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
9
},
"id"
:
34
,
"panels"
:
[],
"title"
:
"tl;dr"
,
...
...
@@ -92,7 +327,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
0
,
"y"
:
1
"y"
:
1
0
},
"id"
:
9
,
"options"
:
{
...
...
@@ -162,7 +397,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
4
,
"y"
:
1
"y"
:
1
0
},
"id"
:
28
,
"options"
:
{
...
...
@@ -230,7 +465,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
8
,
"y"
:
1
"y"
:
1
0
},
"id"
:
4
,
"options"
:
{
...
...
@@ -298,7 +533,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
12
,
"y"
:
1
"y"
:
1
0
},
"id"
:
39
,
"options"
:
{
...
...
@@ -414,7 +649,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
16
,
"y"
:
1
"y"
:
1
0
},
"id"
:
8
,
"options"
:
{
...
...
@@ -482,7 +717,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
4
"y"
:
13
},
"id"
:
38
,
"options"
:
{
...
...
@@ -538,15 +773,6 @@
"color"
:
{
"mode"
:
"thresholds"
},
"custom"
:
{
"fillOpacity"
:
70
,
"hideFrom"
:
{
"legend"
:
false
,
"tooltip"
:
false
,
"viz"
:
false
},
"lineWidth"
:
1
},
"mappings"
:
[
{
"options"
:
{
...
...
@@ -582,23 +808,32 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
12
,
"y"
:
4
"y"
:
13
},
"id"
:
1
6
,
"id"
:
5
1
,
"options"
:
{
"
colWidth"
:
0.9
,
"
displayMode"
:
"basic"
,
"legend"
:
{
"calcs"
:
[],
"displayMode"
:
"list"
,
"placement"
:
"bottom"
,
"showLegend"
:
false
},
"rowHeight"
:
0.9
,
"showValue"
:
"auto"
,
"tooltip"
:
{
"hideZeros"
:
false
,
"mode"
:
"single"
,
"sort"
:
"none"
}
"maxVizHeight"
:
300
,
"minVizHeight"
:
16
,
"minVizWidth"
:
8
,
"namePlacement"
:
"auto"
,
"orientation"
:
"auto"
,
"reduceOptions"
:
{
"calcs"
:
[
"lastNotNull"
],
"fields"
:
""
,
"values"
:
false
},
"showUnfilled"
:
true
,
"sizing"
:
"auto"
,
"valueMode"
:
"color"
},
"pluginVersion"
:
"11.5.3"
,
"targets"
:
[
...
...
@@ -611,6 +846,7 @@
"editorMode"
:
"builder"
,
"expr"
:
"up"
,
"fullMetaSearch"
:
false
,
"hide"
:
false
,
"includeNullMetadata"
:
true
,
"instant"
:
false
,
"legendFormat"
:
"{{instance}}"
,
...
...
@@ -620,7 +856,7 @@
}
],
"title"
:
"Service QoS"
,
"type"
:
"
status-history
"
"type"
:
"
bargauge
"
},
{
"collapsed"
:
false
,
...
...
@@ -628,7 +864,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
1
2
"y"
:
2
1
},
"id"
:
6
,
"panels"
:
[],
...
...
@@ -744,7 +980,7 @@
"h"
:
8
,
"w"
:
24
,
"x"
:
0
,
"y"
:
13
"y"
:
22
},
"id"
:
42
,
"options"
:
{
...
...
@@ -911,7 +1147,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
21
"y"
:
30
},
"id"
:
43
,
"options"
:
{
...
...
@@ -991,7 +1227,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
12
,
"y"
:
21
"y"
:
30
},
"id"
:
44
,
"options"
:
{
...
...
@@ -1063,7 +1299,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
29
"y"
:
38
},
"id"
:
45
,
"panels"
:
[],
...
...
@@ -1084,7 +1320,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
3
0
"y"
:
3
9
},
"id"
:
46
,
"options"
:
{
...
...
@@ -1164,7 +1400,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
12
,
"y"
:
3
0
"y"
:
3
9
},
"id"
:
47
,
"options"
:
{
...
...
@@ -1349,10 +1585,10 @@
]
},
"gridPos"
:
{
"h"
:
7
,
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
38
"y"
:
47
},
"id"
:
40
,
"options"
:
{
...
...
@@ -1397,7 +1633,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
4
5
"y"
:
5
5
},
"id"
:
5
,
"panels"
:
[],
...
...
@@ -1454,7 +1690,7 @@
"h"
:
8
,
"w"
:
12
,
"x"
:
0
,
"y"
:
4
6
"y"
:
5
6
},
"id"
:
7
,
"options"
:
{
...
...
@@ -1693,7 +1929,7 @@
"h"
:
9
,
"w"
:
24
,
"x"
:
0
,
"y"
:
5
4
"y"
:
6
4
},
"id"
:
3
,
"options"
:
{
...
...
@@ -1854,7 +2090,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
6
3
"y"
:
7
3
},
"id"
:
22
,
"panels"
:
[],
...
...
@@ -1901,7 +2137,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
0
,
"y"
:
6
4
"y"
:
7
4
},
"id"
:
17
,
"options"
:
{
...
...
@@ -1983,7 +2219,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
4
,
"y"
:
6
4
"y"
:
7
4
},
"id"
:
24
,
"options"
:
{
...
...
@@ -2040,8 +2276,16 @@
"mode"
:
"absolute"
,
"steps"
:
[
{
"color"
:
"
blue
"
,
"color"
:
"
red
"
,
"value"
:
null
},
{
"color"
:
"yellow"
,
"value"
:
1
},
{
"color"
:
"green"
,
"value"
:
2
}
]
},
...
...
@@ -2053,9 +2297,9 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
8
,
"y"
:
6
4
"y"
:
7
4
},
"id"
:
25
,
"id"
:
48
,
"options"
:
{
"colorMode"
:
"background"
,
"graphMode"
:
"none"
,
...
...
@@ -2110,8 +2354,12 @@
"mode"
:
"absolute"
,
"steps"
:
[
{
"color"
:
"
blue
"
,
"color"
:
"
red
"
,
"value"
:
null
},
{
"color"
:
"green"
,
"value"
:
1
}
]
},
...
...
@@ -2123,9 +2371,9 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
12
,
"y"
:
6
4
"y"
:
7
4
},
"id"
:
26
,
"id"
:
49
,
"options"
:
{
"colorMode"
:
"background"
,
"graphMode"
:
"none"
,
...
...
@@ -2182,7 +2430,7 @@
"mode"
:
"absolute"
,
"steps"
:
[
{
"color"
:
"
blue
"
,
"color"
:
"
green
"
,
"value"
:
null
}
]
...
...
@@ -2195,9 +2443,9 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
16
,
"y"
:
6
4
"y"
:
7
4
},
"id"
:
27
,
"id"
:
50
,
"options"
:
{
"colorMode"
:
"background"
,
"graphMode"
:
"none"
,
...
...
@@ -2277,7 +2525,7 @@
"h"
:
7
,
"w"
:
12
,
"x"
:
0
,
"y"
:
6
7
"y"
:
7
7
},
"id"
:
20
,
"options"
:
{
...
...
@@ -2391,7 +2639,7 @@
"h"
:
7
,
"w"
:
12
,
"x"
:
12
,
"y"
:
6
7
"y"
:
7
7
},
"id"
:
21
,
"options"
:
{
...
...
@@ -2435,7 +2683,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
7
4
"y"
:
8
4
},
"id"
:
31
,
"panels"
:
[],
...
...
@@ -2486,7 +2734,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
0
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
32
,
"options"
:
{
...
...
@@ -2556,7 +2804,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
4
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
29
,
"options"
:
{
...
...
@@ -2626,7 +2874,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
8
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
30
,
"options"
:
{
...
...
@@ -2708,7 +2956,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
12
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
35
,
"options"
:
{
...
...
@@ -2790,7 +3038,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
16
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
36
,
"options"
:
{
...
...
@@ -2872,7 +3120,7 @@
"h"
:
3
,
"w"
:
4
,
"x"
:
20
,
"y"
:
7
5
"y"
:
8
5
},
"id"
:
37
,
"options"
:
{
...
...
@@ -3007,7 +3255,7 @@
"h"
:
7
,
"w"
:
12
,
"x"
:
0
,
"y"
:
7
8
"y"
:
8
8
},
"id"
:
33
,
"options"
:
{
...
...
@@ -3169,7 +3417,7 @@
"h"
:
7
,
"w"
:
12
,
"x"
:
12
,
"y"
:
7
8
"y"
:
8
8
},
"id"
:
41
,
"options"
:
{
...
...
@@ -3214,7 +3462,7 @@
"h"
:
1
,
"w"
:
24
,
"x"
:
0
,
"y"
:
8
5
"y"
:
9
5
},
"id"
:
2
,
"panels"
:
[],
...
...
@@ -3286,7 +3534,7 @@
"h"
:
7
,
"w"
:
12
,
"x"
:
0
,
"y"
:
8
6
"y"
:
9
6
},
"id"
:
23
,
"options"
:
{
...
...
@@ -3329,6 +3577,7 @@
"refresh"
:
"1m"
,
"schemaVersion"
:
40
,
"tags"
:
[
"provisioned"
,
"ui"
,
"dashboard"
,
"metadata"
,
...
...
@@ -3343,13 +3592,13 @@
"list"
:
[]
},
"time"
:
{
"from"
:
"now-
1
h"
,
"from"
:
"now-
3
h"
,
"to"
:
"now"
},
"timepicker"
:
{},
"timezone"
:
"browser"
,
"title"
:
"DBRepo"
,
"uid"
:
"bdz20owu8zn5se2"
,
"version"
:
45
,
"version"
:
7
,
"weekStart"
:
""
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
make/dev.mk
+
5
−
1
View file @
51443b7b
...
...
@@ -12,7 +12,7 @@ stop-dev: ## Stop the development deployment and remove all data.
.PHONY
:
package-config
package-config
:
##
Package the config files
mkdir
-p
./.docker/config
/
{
dashboards,provisioning
}
mkdir
-p
./.docker/config
cp
./dbrepo-auth-service/dbrepo-realm.json ./.docker/config
cp
./dbrepo-auth-service/import-realms.sh ./.docker/config
cp
./dbrepo-auth-service/master-realm.json ./.docker/config
...
...
@@ -24,6 +24,10 @@ package-config: ## Package the config files
cp
./dbrepo-broker-service/definitions.json ./.docker/config
cp
./dbrepo-broker-service/advanced.config ./.docker/config
cp
./dbrepo-gateway-service/dbrepo.conf ./.docker/config
cp
-r
./dbrepo-dashboard-ui/dashboards ./.docker/config
cp
-r
./dbrepo-dashboard-ui/provisioning ./.docker/config
cp
./dbrepo-dashboard-ui/grafana.ini ./.docker/config/grafana.ini
cp
./dbrepo-dashboard-ui/ldap.toml ./.docker/config/ldap.toml
cp
./dbrepo-logging-service/fluentbit.conf ./.docker/config
cp
./dbrepo-logging-service/fluentbit_parser.conf ./.docker/config
cp
./dbrepo-metric-db/prometheus.yml ./.docker/config
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment