Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions deployments/examples/ocis_full/.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ LOG_DRIVER=
# needed when self signed certificates are used.
INSECURE=true

## Tracing / Observability SigNoz ##
OCIS_TRACING_ENABLED=true
OCIS_TRACING_TYPE=otlp
OCIS_TRACING_ENDPOINT=signoz-otel-collector:4317


## Traefik Settings ##
# Note: Traefik is always enabled and can't be disabled.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ services:
collaboration:
environment:
# tracing
OCIS_TRACING_ENABLED: "true"
OCIS_TRACING_TYPE: "otlp"
OCIS_TRACING_ENDPOINT: jaeger:4317
OCIS_TRACING_ENABLED: ${OCIS_TRACING_ENABLED:-true}
OCIS_TRACING_TYPE: ${OCIS_TRACING_TYPE:-otlp}
OCIS_TRACING_ENDPOINT: ${OCIS_TRACING_ENDPOINT:-jaeger:4317}
Comment thread
Rajakavitha1 marked this conversation as resolved.
Outdated

# metrics
COLLABORATION_DEBUG_ADDR: 0.0.0.0:9304

Expand Down