Skip to content

Commit

Permalink
chore: Disable tracing + SB Admin by default
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilKes committed Feb 13, 2024
1 parent 0b51038 commit 8e1f36e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
TRACING_ENABLED=true
LOKI_ENABLED=true
ZIPKIN_ENABLED=true
TRACING_ENABLED=false
LOKI_ENABLED=false
ZIPKIN_ENABLED=false
SB_ADMIN_ENABLED=false
5 changes: 3 additions & 2 deletions movieland-backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ management:
enabled: false
# All traces should be sent to latency analysis tool
tracing:
enabled: ${tracing-enabled}
enabled: ${tracing-enabled:false}
sampling:
probability: 1.0
metrics:
Expand Down Expand Up @@ -76,6 +76,7 @@ spring:
admin:
client:
url: http://localhost:8081
enabled: ${sb-admin-enabled:false}
output:
ansi:
enabled: ALWAYS
Expand All @@ -93,5 +94,5 @@ app:
tmdbApi:
apikey: 7034789c8e20ce00ad84dc8661c288bf
loki:
enabled: ${loki-enabled}
enabled: ${loki-enabled:false}
server: ${loki-server:localhost:3100}

0 comments on commit 8e1f36e

Please sign in to comment.