From 28c2bafca44378eef7740766b2bde01bdc9729b6 Mon Sep 17 00:00:00 2001 From: Molly Struve Date: Fri, 17 Jan 2020 13:56:59 -0500 Subject: [PATCH] Disable Beeline on Schedulers and in Console (#5561) --- datadog/prerun.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/datadog/prerun.sh b/datadog/prerun.sh index ed3293b6a..8444079f4 100644 --- a/datadog/prerun.sh +++ b/datadog/prerun.sh @@ -3,4 +3,8 @@ # Disable the Datadog Agent for scheduler workers if [ "$DYNOTYPE" == "scheduler" ] || [ "$DYNOTYPE" == "run" ]; then DISABLE_DATADOG_AGENT="true" + # Disable Automatic Beeline integrations to prevent unnecessary + # data from being tracked in Honeycomb + # more info here: https://docs.honeycomb.io/getting-data-in/ruby/beeline/#using-env-variables-to-control-framework-integrations + HONEYCOMB_DISABLE_AUTOCONFIGURE="true" fi