in src/node/telemetryReporter.ts [76:86]
constructor(extensionId: string, extensionVersion: string, key: string, firstParty?: boolean) {
const appender = new BaseTelemetryAppender(key, appInsightsClientFactory);
if (key && key.indexOf("AIF-") === 0) {
firstParty = true;
}
super(extensionId, extensionVersion, appender, {
release: os.release(),
platform: os.platform(),
architecture: os.arch(),
}, firstParty);
}