more GDPR classification

This commit is contained in:
kieferrm
2017-09-07 23:32:17 -07:00
committed by Kai Maetzel
parent c03559eec7
commit a65363876a
20 changed files with 205 additions and 15 deletions

View File

@@ -25,6 +25,12 @@ export class MainThreadTelemetry implements MainThreadTelemetryShape {
}
$publicLog(eventName: string, data: any = Object.create(null)): void {
/* __GDPR__FRAGMENT__
"MainThreadData" : {
"pluginHostTelemetry" : { "endPoint": "none", "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
data[MainThreadTelemetry._name] = true;
this._telemetryService.publicLog(eventName, data);
}