mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
39 lines
1.6 KiB
TypeScript
39 lines
1.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
|
|
import { MainThreadTelemetryShape, MainContext, IExtHostContext } from '../common/extHost.protocol';
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/common/extHostCustomers';
|
|
import { ClassifiedEvent, StrictPropertyCheck, GDPRClassification } from 'vs/platform/telemetry/common/gdprTypings';
|
|
|
|
@extHostNamedCustomer(MainContext.MainThreadTelemetry)
|
|
export class MainThreadTelemetry implements MainThreadTelemetryShape {
|
|
|
|
private static readonly _name = 'pluginHostTelemetry';
|
|
|
|
constructor(
|
|
extHostContext: IExtHostContext,
|
|
@ITelemetryService private readonly _telemetryService: ITelemetryService
|
|
) {
|
|
//
|
|
}
|
|
|
|
dispose(): void {
|
|
//
|
|
}
|
|
|
|
$publicLog(eventName: string, data: any = Object.create(null)): void {
|
|
// __GDPR__COMMON__ "pluginHostTelemetry" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true }
|
|
data[MainThreadTelemetry._name] = true;
|
|
this._telemetryService.publicLog(eventName, data);
|
|
}
|
|
|
|
$publicLog2<E extends ClassifiedEvent<T> = never, T extends GDPRClassification<T> = never>(eventName: string, data: StrictPropertyCheck<T, E>): void {
|
|
this.$publicLog(eventName, data as any);
|
|
}
|
|
}
|
|
|
|
|