mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
|
|
import { MainThreadTelemetryShape, MainContext, IExtHostContext } from '../node/extHost.protocol';
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/electron-browser/extHostCustomers';
|
|
|
|
@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);
|
|
}
|
|
}
|