Skip to content

Commit

Permalink
Fix event naming for web telemetry, do not double append 'monacoworkb…
Browse files Browse the repository at this point in the history
…ench' (#83855)
  • Loading branch information
Rachel Macfarlane committed Nov 1, 2019
1 parent 37d3417 commit d953e5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class WebTelemetryAppender implements ITelemetryAppender {
data = validateTelemetryData(data);
this._logService.trace(`telemetry/${eventName}`, data);

this._appender.logTelemetry('/monacoworkbench/' + eventName, {
this._appender.logTelemetry(eventName, {
properties: data.properties,
measurements: data.measurements
});
Expand Down

0 comments on commit d953e5c

Please sign in to comment.