Skip to content

Commit

Permalink
fix broken telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed Oct 7, 2024
1 parent 53564cd commit c9ac5dc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Unreleased

### v0.24.1: 6 October 2024

#### Fixes

- fixed a crash in telemetry init caused by breaking change in @vscode/extension-telemetry library

### v0.24.0: 6 October 2024

#### Improvements
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "The Elixir community",
"license": "MIT",
"publisher": "JakeBecker",
"version": "0.24.0",
"version": "0.24.1",
"engines": {
"vscode": "^1.92.0"
},
Expand Down
3 changes: 2 additions & 1 deletion src/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import TelemetryReporter, {
} from "@vscode/extension-telemetry";
import type * as vscode from "vscode";

const key = "0979629c-3be4-4b0d-93f2-2be81cccd799";
const key =
"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";
const fakeKey = "00000000-0000-0000-0000-000000000000";

interface EventSamplingConfig {
Expand Down

0 comments on commit c9ac5dc

Please sign in to comment.