Tweaks telemetry a bit

This commit is contained in:
Eric Amodio
2017-03-27 13:53:50 -04:00
parent e1190d50a4
commit e7604ed863
2 changed files with 10 additions and 8 deletions

View File

@@ -63,9 +63,8 @@ export async function activate(context: ExtensionContext) {
Logger.log(`Git version: ${gitVersion}`);
const telemetryContext: { [id: string]: any } = Object.create(null);
telemetryContext.name = ExtensionId;
telemetryContext.version = gitlensVersion;
telemetryContext.git_version = gitVersion;
telemetryContext['git.version'] = gitVersion;
Telemetry.setContext(telemetryContext);
notifyOnUnsupportedGitVersion(context, gitVersion);

View File

@@ -41,13 +41,15 @@ export class TelemetryReporter extends Disposable {
.setAutoCollectPerformance(false)
.setAutoCollectRequests(false);
(appInsights as any).setAutoCollectDependencies(false)
(appInsights as any)
.setAutoCollectDependencies(false)
.setAutoDependencyCorrelation(false)
.setOfflineMode(true);
this._client = appInsights.start().client;
this.setContext();
this._stripPII(appInsights.client);
this._stripPII(this._client);
this._onConfigurationChanged();
@@ -67,12 +69,13 @@ export class TelemetryReporter extends Disposable {
this._context = Object.create(null);
// Add vscode properties
this._context.code_language = vscode.env.language;
this._context.code_version = vscode.version;
this._context['code.language'] = vscode.env.language;
this._context['code.version'] = vscode.version;
this._context[this._client.context.keys.sessionId] = vscode.env.sessionId;
// Add os properties
this._context.os = os.platform();
this._context.os_version = os.release();
this._context['os.platform'] = os.platform();
this._context['os.version'] = os.release();
}
if (context) {