Skip to content

Commit 270555b

Browse files
authored
chore(vscode): increase rollbar sampling rate (#2355)
1 parent 368401c commit 270555b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/vscode/telemetry/src/lib/google-analytics-sender.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class GoogleAnalyticsSender implements TelemetrySender {
4141
getOutputChannel().appendLine(`Uncaught Exception: ${error}`);
4242

4343
const shouldLogToRollbar = this.production
44-
? Math.floor(Math.random() * 75) === 0
44+
? Math.floor(Math.random() * 25) === 0
4545
: true;
4646
if (shouldLogToRollbar) {
4747
this.rollbar.error(error);

0 commit comments

Comments
 (0)