Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions localstack-core/localstack/runtime/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

LOG = logging.getLogger(__name__)

# Config options for which both usage and values are reported in analytics.
# Important: This list must only contain options whose values do not contain PII or sensitive data.
TRACKED_ENV_VAR = [
"ACTIVATE_PRO",
"ALLOW_NONSTANDARD_REGIONS",
Expand All @@ -28,6 +30,7 @@
"DYNAMODB_IN_MEMORY",
"DYNAMODB_REMOVE_EXPIRED_ITEMS",
"EAGER_SERVICE_LOADING",
"EC2_DOCKER_INIT",
"EC2_VM_MANAGER",
"ECS_TASK_EXECUTOR",
"EDGE_PORT",
Expand Down Expand Up @@ -73,9 +76,15 @@
"USE_SSL",
]

# Config options for which only the usage is reported in analytics.
# Use this for options which may hold sensitive data or PII.
PRESENCE_ENV_VAR = [
"DATA_DIR",
"EDGE_FORWARD_URL", # Not functional; deprecated in 1.4.0, removed in 3.0.0
"EC2_HYPERVISOR_URI",
"EC2_REFERENCE_DOMAIN",
"EC2_LIBVIRT_NETWORK",
"EC2_LIBVIRT_POOL",
"GATEWAY_LISTEN",
"HOSTNAME",
"HOSTNAME_EXTERNAL",
Expand Down
Loading