Skip to content

Commit

Permalink
fix wrong command being sent for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdias committed Mar 21, 2018
1 parent 7e471ba commit 387c649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/push-image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function pushImage(context?: ImageNode) {
"command" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
reporter.sendTelemetryEvent('vscode', {
reporter.sendTelemetryEvent('command', {
command: teleAzureId
});

Expand Down

1 comment on commit 387c649

@fiveisprime
Copy link
Member

@fiveisprime fiveisprime commented on 387c649 Mar 27, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be something other than 'command'.. Right now, all events from this extension show as vscode-docker/command and I have to check customDimensions to find the command.

Please sign in to comment.