Disable Beeline on Schedulers and in Console (#5561)

This commit is contained in:
Molly Struve 2020-01-17 13:56:59 -05:00 committed by GitHub
parent ffba283b67
commit 28c2bafca4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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