Track browser connections

Reviewed By: lblasa

Differential Revision: D50225630

fbshipit-source-id: 31842fcde494ec05edf2458396d466239397d2c8
This commit is contained in:
Andrey Goncharov
2023-10-12 15:16:11 -07:00
committed by Facebook GitHub Bot
parent 77d67c24db
commit 0e664d274a
2 changed files with 20 additions and 0 deletions

View File

@@ -47,6 +47,10 @@ type TrackerEvents = {
error?: string;
};
'server-socket-already-in-use': {};
'browser-connection-created': {
successful: boolean;
timeMS: number;
};
'app-connection-created': AppConnectionPayload;
'app-connection-secure-attempt': AppConnectionPayload;
'app-connection-insecure-attempt': AppConnectionPayload;