Skip to content

Does debugpy send telemetry? #1504

Answered by int19h
PhilippFeO asked this question in Q&A
Discussion options

You must be logged in to vote

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:

self.channel.send_event(
"output",
{
"category": "telemetry",
"output": "ptvsd",
"data": {"packageVersion": debugpy.__version__},
},
)
self.channel.send_event(
"output",
{
"category": "telemetry",
"output": "debugpy",
"data": {"packageVersion": debugpy.__version__},
},
)

Note that what the client does with this telemetry is up to the client, but if they do have their own telemetry, th…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@PhilippFeO
Comment options

Answer selected by PhilippFeO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1502 on January 29, 2024 18:47.