Telemetry¶
If you do not wish to participate in telemetry capture, one can opt-out with one of the following methods:
Set it to false programmatically in your code before creating a Hamilton driver:
from hamilton import telemetry telemetry.disable_telemetry()
Set the key
telemetry_enabled
tofalse
in ~/.hamilton.conf under theDEFAULT
section:[DEFAULT] telemetry_enabled = False
Set HAMILTON_TELEMETRY_ENABLED=false as an environment variable. Either setting it for your shell session:
export HAMILTON_TELEMETRY_ENABLED=false
or passing it as part of the run command:
HAMILTON_TELEMETRY_ENABLED=false python NAME_OF_MY_DRIVER.py