Add more tracking data for UI startup

Reviewed By: lblasa

Differential Revision: D50365803

fbshipit-source-id: b6a601e7bf987738400a86be6814de7cafd50d3d
This commit is contained in:
Andrey Goncharov
2023-10-17 08:28:02 -07:00
committed by Facebook GitHub Bot
parent 17103ce1fa
commit cc76a21d80
5 changed files with 11 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ import {validateAuthToken} from '../app-connectivity/certificate-exchange/certif
import {tracker} from '../tracker';
import {EnvironmentInfo, isProduction} from 'flipper-common';
import {GRAPH_SECRET} from '../fb-stubs/constants';
import {sessionId} from '../sessionId';
type Config = {
port: number;
@@ -151,7 +152,9 @@ async function startHTTPServer(
const processedContent = content
.toString()
.replace('GRAPH_SECRET_REPLACE_ME', GRAPH_SECRET)
.replace('FLIPPER_APP_VERSION_REPLACE_ME', environmentInfo.appVersion);
.replace('FLIPPER_APP_VERSION_REPLACE_ME', environmentInfo.appVersion)
.replace('FLIPPER_UNIXNAME_REPLACE_ME', environmentInfo.os.unixname)
.replace('FLIPPER_SESSION_ID_REPLACE_ME', sessionId);
res.end(processedContent);
});
});