Skip to content

Commit c9ac5dc

Browse files
committed
fix broken telemetry
1 parent 53564cd commit c9ac5dc

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
### Unreleased
22

3+
### v0.24.1: 6 October 2024
4+
5+
#### Fixes
6+
7+
- fixed a crash in telemetry init caused by breaking change in @vscode/extension-telemetry library
8+
39
### v0.24.0: 6 October 2024
410

511
#### Improvements

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "The Elixir community",
1212
"license": "MIT",
1313
"publisher": "JakeBecker",
14-
"version": "0.24.0",
14+
"version": "0.24.1",
1515
"engines": {
1616
"vscode": "^1.92.0"
1717
},

src/telemetry.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import TelemetryReporter, {
44
} from "@vscode/extension-telemetry";
55
import type * as vscode from "vscode";
66

7-
const key = "0979629c-3be4-4b0d-93f2-2be81cccd799";
7+
const key =
8+
"InstrumentationKey=0979629c-3be4-4b0d-93f2-2be81cccd799;IngestionEndpoint=https://eastus-8.in.applicationinsights.azure.com/;LiveEndpoint=https://eastus.livediagnostics.monitor.azure.com/;ApplicationId=7ad820f6-e2a9-4df6-97d8-d72ce90b8460";
89
const fakeKey = "00000000-0000-0000-0000-000000000000";
910

1011
interface EventSamplingConfig {

0 commit comments

Comments
 (0)