We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc90138 commit 5dc0175Copy full SHA for 5dc0175
1 file changed
lib/shared.bash
@@ -41,6 +41,11 @@ function plugin_read_config() {
41
echo "${!var:-$default}"
42
}
43
44
+# Disable OTEL tracing for host-side commands
45
+if [[ "$(plugin_read_config DISABLE_HOST_OTEL_TRACING "false")" == "true" ]] ; then
46
+ export OTEL_SDK_DISABLED=true
47
+fi
48
+
49
# Reads either a value or a list from plugin config
50
function plugin_read_list() {
51
prefix_read_list "BUILDKITE_PLUGIN_DOCKER_COMPOSE_$1"
0 commit comments