File tree 9 files changed +20
-20
lines changed
resources/click-house/schemas
9 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,8 @@ services:
172
172
- " ${BROWSERUP_WEBCONSOLE_PORT}:3100"
173
173
environment :
174
174
- DOCKER_LOGS=true
175
+ - BROWSERUP_WC_DEBUG=${BROWSERUP_WC_DEBUG}
176
+ - BROWSERUP_DEPLOY_TYPE=docker
175
177
- BROWSERUP_CLICKHOUSE_HOST=${BROWSERUP_CLICKHOUSE_HOST}
176
178
- BROWSERUP_GRID_SERVICE_URL=http://${BROWSERUP_GRID_JAVA_API_HOST}:8080/grid
177
179
- BROWSERUP_LOKI_SERVICE_URL=http://${BROWSERUP_LOKI_HOST}:3100
@@ -204,7 +206,7 @@ services:
204
206
fluentd-address : " localhost:24224"
205
207
206
208
clickhouse :
207
- image : ' clickhouse/clickhouse-server:25.1 '
209
+ image : ' clickhouse/clickhouse-server:latest '
208
210
container_name : clickhouse
209
211
hostname : clickhouse
210
212
volumes :
@@ -272,7 +274,7 @@ services:
272
274
273
275
minio :
274
276
container_name : browserup_minio
275
- image : quay.io/minio/minio:RELEASE.2022-01-08T03-11-54Z
277
+ image : quay.io/minio/minio:RELEASE.2025-02-28T09-55-16Z
276
278
command : server --console-address ":9001" /data
277
279
ports :
278
280
- " ${BROWSERUP_S3_MINIO_PORT_1}:9000"
@@ -298,6 +300,8 @@ services:
298
300
- loki
299
301
environment :
300
302
- LOG_PATH=/tmp
303
+ ports :
304
+ - " 24224:8889"
301
305
volumes :
302
306
- ./resources/fluent-bit:/fluent-bit/etc
303
307
Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ package com.browserup.common.metric.dto;
5
5
message Run_info {
6
6
int64 start_ts = 1 ;
7
7
int64 end_ts = 2 ;
8
- string region = 3 ;
9
- uint32 run_id = 4 ;
10
- uint32 workspace_id = 5 ;
8
+ uint32 run_id = 3 ;
9
+ uint32 workspace_id = 4 ;
11
10
}
12
11
13
12
message Run_infosList {
Original file line number Diff line number Diff line change @@ -22,5 +22,5 @@ message System_stat {
22
22
}
23
23
24
24
message System_statsList {
25
- repeated System_stat system_stats = 1 ;
25
+ repeated System_stat system_stats = 1 ;
26
26
}
Original file line number Diff line number Diff line change @@ -3,20 +3,17 @@ syntax = "proto3";
3
3
package com.browserup.common.metric.dto ;
4
4
5
5
message Vu_log {
6
- int64 start_ts = 1 ;
7
- int64 end_ts = 2 ;
8
- string log_text = 3 ;
9
- uint32 iteration = 4 ;
10
- string status = 5 ;
11
- string region = 6 ;
12
- string profile = 7 ;
13
- string image = 8 ;
14
- string step = 9 ;
15
- uint32 vu_id = 10 ;
16
- uint32 run_id = 11 ;
17
- uint32 workspace_id = 12 ;
18
- uint32 scenario_id = 13 ;
19
- uint32 profile_id = 14 ;
6
+ string log_text = 1 ;
7
+ uint32 iteration = 2 ;
8
+ string region = 3 ;
9
+ string profile = 4 ;
10
+ string image = 5 ;
11
+ string step = 6 ;
12
+ uint32 vu_id = 7 ;
13
+ uint32 run_id = 8 ;
14
+ uint32 workspace_id = 9 ;
15
+ uint32 scenario_id = 10 ;
16
+ uint32 profile_id = 11 ;
20
17
}
21
18
22
19
message Vu_logsList {
You can’t perform that action at this time.
0 commit comments