We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b7061 commit 16a3b97Copy full SHA for 16a3b97
core/config/ConfigHandler.ts
@@ -537,6 +537,7 @@ export class ConfigHandler {
537
// Track config loading telemetry
538
const endTime = performance.now();
539
const duration = endTime - startTime;
540
+ const isSignedIn = await this.controlPlaneClient.isSignedIn();
541
542
const profileDescription = this.currentProfile.profileDescription;
543
const telemetryData: Record<string, any> = {
@@ -547,6 +548,7 @@ export class ConfigHandler {
547
548
profileType: profileDescription.profileType,
549
isPersonalOrg: this.currentOrg?.id === this.PERSONAL_ORG_DESC.id,
550
errorCount: errors.length,
551
+ isSignedIn,
552
};
553
554
void Telemetry.capture("config_reload", telemetryData);
0 commit comments