Archived
1
0

docs: update telemetry patch (#5596)

This adds instructions on how to test the telemetry patch. Eventually we
will add a test for it but for now, this makes it 10x easier to test.
This commit is contained in:
Joe Previte 2022-09-27 14:09:53 -07:00 committed by GitHub
parent 05289d3eb6
commit acdbefb986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,11 @@
Add support for telemetry endpoint Add support for telemetry endpoint
To test: To test:
1. Look inside a build of code-server, inside `lib/vscode/vs/server/node/server.main.js` 1. Create a RequestBin - https://requestbin.io/
2. Search for a `JSON.stringify` near `TelemetryClient` 2. Run code-server with `CS_TELEMETRY_URL` set:
3. throw in a `console.log()` before it and make sure it logs telemetry data i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.7.0-macos-amd64/bin/code-server`
3. Load code-server in browser an do things (i.e. open a file)
4. Refresh RequestBin and you should see logs
Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts Index: code-server/lib/vscode/src/vs/server/node/serverServices.ts
=================================================================== ===================================================================