Skip to content

Commit 82a111e

Browse files
chore(signoz): remove deprecated signoz arguments (#7849)
### Summary - remove deprecated signoz arguments --------- Signed-off-by: Prashant Shahi <[email protected]>
1 parent e2e6c65 commit 82a111e

File tree

5 files changed

+2
-14
lines changed

5 files changed

+2
-14
lines changed

Makefile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ go-run-enterprise: ## Runs the enterprise go backend server
7676
go run -race \
7777
$(GO_BUILD_CONTEXT_ENTERPRISE)/main.go \
7878
--config ./conf/prometheus.yml \
79-
--cluster cluster \
80-
--use-logs-new-schema true \
81-
--use-trace-new-schema true
79+
--cluster cluster
8280

8381
.PHONY: go-test
8482
go-test: ## Runs go unit tests
@@ -96,9 +94,7 @@ go-run-community: ## Runs the community go backend server
9694
go run -race \
9795
$(GO_BUILD_CONTEXT_COMMUNITY)/main.go \
9896
--config ./conf/prometheus.yml \
99-
--cluster cluster \
100-
--use-logs-new-schema true \
101-
--use-trace-new-schema true
97+
--cluster cluster
10298

10399
.PHONY: go-build-community $(GO_BUILD_ARCHS_COMMUNITY)
104100
go-build-community: ## Builds the go backend server for community

deploy/docker-swarm/docker-compose.ha.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,6 @@ services:
177177
image: signoz/signoz:v0.82.0
178178
command:
179179
- --config=/root/config/prometheus.yml
180-
- --use-logs-new-schema=true
181-
- --use-trace-new-schema=true
182180
ports:
183181
- "8080:8080" # signoz port
184182
# - "6060:6060" # pprof port

deploy/docker-swarm/docker-compose.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ services:
113113
image: signoz/signoz:v0.82.0
114114
command:
115115
- --config=/root/config/prometheus.yml
116-
- --use-logs-new-schema=true
117-
- --use-trace-new-schema=true
118116
ports:
119117
- "8080:8080" # signoz port
120118
# - "6060:6060" # pprof port

deploy/docker/docker-compose.ha.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,6 @@ services:
181181
container_name: signoz
182182
command:
183183
- --config=/root/config/prometheus.yml
184-
- --use-logs-new-schema=true
185-
- --use-trace-new-schema=true
186184
ports:
187185
- "8080:8080" # signoz port
188186
# - "6060:6060" # pprof port

deploy/docker/docker-compose.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ services:
114114
container_name: signoz
115115
command:
116116
- --config=/root/config/prometheus.yml
117-
- --use-logs-new-schema=true
118-
- --use-trace-new-schema=true
119117
ports:
120118
- "8080:8080" # signoz port
121119
# - "6060:6060" # pprof port

0 commit comments

Comments
 (0)