Skip to content

Commit

Permalink
add action id to install action telemetry (#177480)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Mar 17, 2023
1 parent 3975d4f commit abc1d14
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,12 +402,13 @@ export abstract class AbstractInstallAction extends ExtensionAction {
/* __GDPR__
"extensions:action:install" : {
"owner": "sandy081",
"actionId" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"${include}": [
"${GalleryExtensionTelemetryData}"
]
}
*/
this.telemetryService.publicLog('extensions:action:install', this.extension.telemetryData);
this.telemetryService.publicLog('extensions:action:install', { ...this.extension.telemetryData, actionId: this.id });

const extension = await this.install(this.extension);

Expand Down

0 comments on commit abc1d14

Please sign in to comment.