You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Created the TelemetryListener and stuffed most of the functions in
telemetry.ts into this class. Tests had to change a significant amount.
Also addressed other comments from code review.
Copy file name to clipboardExpand all lines: .github/TELEMETRY.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
# Telemetry in the CodeQL for VS Code
1
+
# Telemetry in the CodeQL extension for VS Code
2
2
3
3
## Why do you collect data?
4
4
5
-
GitHub collects usage data and metrics to help us improve Salesforce Extensions for VS Code.
5
+
GitHub collects usage data and metrics to help us improve CodeQL for VS Code.
6
6
7
7
## What data is collected
8
8
@@ -16,6 +16,6 @@ GitHub collects anonymous information related to the usage of the extensions. Th
16
16
17
17
## How do I disable telemetry reporting?
18
18
19
-
You can disable telemetry reporting by setting `codeQL.telemetry.enableTelemetry` to `false` in your settings.
19
+
You can disable telemetry reporting by setting `codeQL.telemetry.enableTelemetry` to `false` in [your settings](https://code.visualstudio.com/docs/getstarted/settings#_settings-editor).
20
20
21
-
Additionally, telemetry will be disabled if the global `telemetry.enableTelemetry` is set to `false`. For more information see [Microsoft’s documentation](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
21
+
Additionally, telemetry will be disabled if the global `telemetry.enableTelemetry`setting is set to `false`. For more information on global telemetry collection, see [Microsoft’s documentation](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
Copy file name to clipboardExpand all lines: extensions/ql-vscode/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@
179
179
"type": "boolean",
180
180
"default": false,
181
181
"scope": "application",
182
-
"markdownDescription": "Specifies whether to enable Code QL telemetry. This setting AND the global `#telemetry.enableTelemetry#` setting must be checked for telemetry to be sent. For more information, see [TELEMETRY.md](https://github.com/github/vscode-codeql/blob/93831e28597bb08567db9844737efd9ff188fc3a/.github/TELEMETRY.md)"
182
+
"markdownDescription": "Specifies whether to send CodeQL usage telemetry. This setting AND the global `#telemetry.enableTelemetry#` setting must be checked for telemetry to be sent to GitHub. For more information, see [TELEMETRY.md](https://github.com/github/vscode-codeql/blob/main/.github/TELEMETRY.md)"
0 commit comments