SE_ENABLE_TRACING=false is not required when starting the container anymore #2549
VietND96
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
By default,
SE_ENABLE_TRACING
istrue
to align with CLI option config https://www.selenium.dev/documentation/grid/configuration/cli_options/#logging.It is recommended that the user enable observability for tracing issues if having any. However, by default, it auto config the endpoint to a local OTLP
localhost/[0:0:0:0:0:0:0:1]:4317
and raises the warning if that endpoint is unreachable. The error looks likeThis warning doesn't impact the Grid functions, but it might annoy users or cause messed up logs to identify another real issue.
Instead of repetitively asking the user to add env var
SE_ENABLE_TRACING=false
when starting the container or in the docker-compose file, so on.We updated the condition to enable tracing feature to be
SE_ENABLE_TRACING=true
, and users must input a correct endpoint to env varSE_OTEL_EXPORTER_ENDPOINT
(it is empty by default). Otherwise, tracing is disabled internally.Affected image tag: 4.23.1-20240812+
Fixed image tag: 4.27.0-20250101
Beta Was this translation helpful? Give feedback.
All reactions