[TiDB Usage Environment] Production Environment / Testing / Poc
Production Environment
[TiDB Version]
v6.1.1
[Reproduction Path] What operations were performed to cause the issue
Here are the steps I followed according to the documentation 遥测 | PingCAP 文档中心 to disable telemetry:
Modify pd’s dashboard.enable-telemetry: false and restart pd
Modify the instance’s global variable SET GLOBAL tidb_enable_telemetry = 0;
Disable tiup telemetry with tiup telemetry disable
Restart the entire cluster
However, after restarting, I still found telemetry data being sent when logging into the dashboard interface, including internal network URLs, etc. Is there a way to completely disable it?
[Encountered Issue: Issue Phenomenon and Impact]
Step 1: The PD properties modified through tiup cluster edit-config still send a small amount of information after restarting the cluster, even though TiUP has been shut down.
Use tiup cluster edit-config to modify the cluster configuration:
server_configs:
tidb:
enable-telemetry: false
Add this as well.
Additionally, you can use SHOW config WHERE NAME LIKE '%telemetry%' to check if all telemetry settings are false. It seems that even after disabling it, it still shows true…