Skip to content

Commit

Permalink
common.arch -> common.nodeArch
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko committed Nov 18, 2021
1 parent 4d7a45b commit ddeafdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/baseTelemetryReporter.ts
Expand Up @@ -132,7 +132,7 @@ export class BaseTelemetryReporter {
}

// __GDPR__COMMON__ "common.os" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
// __GDPR__COMMON__ "common.arch" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
// __GDPR__COMMON__ "common.nodeArch" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
// __GDPR__COMMON__ "common.platformversion" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
// __GDPR__COMMON__ "common.extname" : { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }
// __GDPR__COMMON__ "common.extversion" : { "classification": "PublicNonPersonalData", "purpose": "FeatureInsight" }
Expand All @@ -146,7 +146,7 @@ export class BaseTelemetryReporter {
private getCommonProperties(): TelemetryEventProperties {
const commonProperties = Object.create(null);
commonProperties["common.os"] = this.osShim.platform;
commonProperties["common.arch"] = this.osShim.architecture;
commonProperties["common.nodeArch"] = this.osShim.architecture;
commonProperties["common.platformversion"] = (this.osShim.release || "").replace(/^(\d+)(\.\d+)?(\.\d+)?(.*)/, "$1$2$3");
commonProperties["common.extname"] = this.extensionId;
commonProperties["common.extversion"] = this.extensionVersion;
Expand Down

0 comments on commit ddeafdb

Please sign in to comment.