Skip to content

Updated schemas #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions lib/docker_compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ services:
- "${BROWSERUP_WEBCONSOLE_PORT}:3100"
environment:
- DOCKER_LOGS=true
- BROWSERUP_WC_DEBUG=${BROWSERUP_WC_DEBUG}
- BROWSERUP_DEPLOY_TYPE=docker
- BROWSERUP_CLICKHOUSE_HOST=${BROWSERUP_CLICKHOUSE_HOST}
- BROWSERUP_GRID_SERVICE_URL=http://${BROWSERUP_GRID_JAVA_API_HOST}:8080/grid
- BROWSERUP_LOKI_SERVICE_URL=http://${BROWSERUP_LOKI_HOST}:3100
Expand Down Expand Up @@ -204,7 +206,7 @@ services:
fluentd-address: "localhost:24224"

clickhouse:
image: 'clickhouse/clickhouse-server:25.1'
image: 'clickhouse/clickhouse-server:latest'
container_name: clickhouse
hostname: clickhouse
volumes:
Expand Down Expand Up @@ -272,7 +274,7 @@ services:

minio:
container_name: browserup_minio
image: quay.io/minio/minio:RELEASE.2022-01-08T03-11-54Z
image: quay.io/minio/minio:RELEASE.2025-02-28T09-55-16Z
command: server --console-address ":9001" /data
ports:
- "${BROWSERUP_S3_MINIO_PORT_1}:9000"
Expand All @@ -298,6 +300,8 @@ services:
- loki
environment:
- LOG_PATH=/tmp
ports:
- "24224:8889"
volumes:
- ./resources/fluent-bit:/fluent-bit/etc

Expand Down
Empty file modified lib/docker_compose/resources/click-house/schemas/errors.proto
100755 → 100644
Empty file.
5 changes: 2 additions & 3 deletions lib/docker_compose/resources/click-house/schemas/run_infos.proto
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ package com.browserup.common.metric.dto;
message Run_info {
int64 start_ts = 1;
int64 end_ts = 2;
string region = 3;
uint32 run_id = 4;
uint32 workspace_id = 5;
uint32 run_id = 3;
uint32 workspace_id = 4;
}

message Run_infosList {
Expand Down
Empty file modified lib/docker_compose/resources/click-house/schemas/steps.proto
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion lib/docker_compose/resources/click-house/schemas/system_stats.proto
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ message System_stat {
}

message System_statsList {
repeated System_stat system_stats = 1;
repeated System_stat system_stats = 1;
}
Empty file modified lib/docker_compose/resources/click-house/schemas/urls.proto
100755 → 100644
Empty file.
Empty file.
25 changes: 11 additions & 14 deletions lib/docker_compose/resources/click-house/schemas/vu_logs.proto
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,17 @@ syntax = "proto3";
package com.browserup.common.metric.dto;

message Vu_log {
int64 start_ts = 1;
int64 end_ts = 2;
string log_text = 3;
uint32 iteration = 4;
string status = 5;
string region = 6;
string profile = 7;
string image = 8;
string step = 9;
uint32 vu_id = 10;
uint32 run_id = 11;
uint32 workspace_id = 12;
uint32 scenario_id = 13;
uint32 profile_id = 14;
string log_text = 1;
uint32 iteration = 2;
string region = 3;
string profile = 4;
string image = 5;
string step = 6;
uint32 vu_id = 7;
uint32 run_id = 8;
uint32 workspace_id = 9;
uint32 scenario_id = 10;
uint32 profile_id = 11;
}

message Vu_logsList {
Expand Down
Empty file.