-
-
Notifications
You must be signed in to change notification settings - Fork 623
Extend stats summary with call device and user count based on room state #3424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
82303b9
91dfdd4
538b787
0bc2bfd
dd21ee2
d383d2d
b23b8fd
45e8ae4
2c512c8
1b42313
1f99cd0
c4e3b90
39465e3
0fd11ac
600f26d
de34d24
6b60287
44ed483
dd23e4b
5976d69
3895fbb
6f79cd2
1e2f701
d4e3452
8ccbb8d
e1ce16a
a21736c
9afad10
2c94bae
8bab6cd
1aeaba5
b0a73fc
ec3fd91
1c67b38
a3c1656
6969446
9a79554
6ad2cc3
4c250b5
a8b327e
e255bab
bf107ac
e53368a
29b9889
144edca
e7a02b0
3e1b3d9
4c219cf
accd4a5
0fcfe9c
4c09840
dd58296
7a19ddf
d2c8b04
1eb1fdb
ce5e00f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,4 +83,9 @@ export interface SummaryStatsReport { | |
maxPacketLoss: number; | ||
percentageConcealedAudio: number; | ||
peerConnections: number; | ||
oppUsersInCall?: number; | ||
robintown marked this conversation as resolved.
Show resolved
Hide resolved
|
||
oppDevicesInCall?: number; | ||
diffDevicesToPeerConnections?: number; | ||
ratioPeerConnectionToDevices?: number; | ||
// Todo: Decide if we want an index (or a timestamp) of this report in relation to the group call, to help differenciate when issues occur and ignore/track initial connection delays. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the names are interpretations of the actual statistics. I would name the values according to their real meaning and do the interpretation in Posthog. And I would also add the joined users in the room. Because it is unusual for a user to take part in a conference with several devices. If it happens too often, we can use this to identify a caching issues. usersInRoom: number;
devicesInRoom: number;
diffDevicesToPeerConnections: number;
ratioPeerConnectionToDevices : number; There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To make the devices more comparable with the peerConnections i only count the devices without the "local" device. I changed it to |
||
} |
Uh oh!
There was an error while loading. Please reload this page.