Does debugpy send telemetry? #1504
-
Does debugpy send telemetry data? If so, how can I disable it? Thank you! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
By itself the only thing that debugpy does currently is report its own version to the debug adapter protocol client using the "telemetry" DAP message: debugpy/src/debugpy/adapter/clients.py Lines 97 to 112 in 42853a9 Note that what the client does with this telemetry is up to the client, but if they do have their own telemetry, they usually incorporate any such "telemetry" messages into that somehow, and thus you can configure what actually gets submitted in the client. Clients may also choose to report their own telemetry based on other messages in the DAP session, e.g. reporting requests like "stepIn". We do plan to add more telemetry in the debug adapter and the debug server, but it will all be similarly implemented using "telemetry" DAP events (i.e. no backchannels). |
Beta Was this translation helpful? Give feedback.
By itself the only thing that debugpy does currently is report its own version to the debug adapter protocol client using the "telemetry" DAP message:
debugpy/src/debugpy/adapter/clients.py
Lines 97 to 112 in 42853a9
Note that what the client does with this telemetry is up to the client, but if they do have their own telemetry, th…