Add a 'warm' room list performance check:

We want to measure how long it takes the SDK to update the room list when the app comes back from being in background.

Note we don't want to check this in cold starts, only warm ones.
This commit is contained in:
Jorge Martín
2025-11-19 17:27:56 +01:00
committed by Jorge Martin Espinosa
parent 766c23721e
commit 1b868e73c7
4 changed files with 254 additions and 0 deletions

View File

@@ -12,4 +12,5 @@ sealed class AnalyticsLongRunningTransaction(
val operation: String?,
) {
data object FirstRoomsDisplayed : AnalyticsLongRunningTransaction("First rooms displayed after login or restoration", null)
data object ResumeAppUntilNewRoomsReceived : AnalyticsLongRunningTransaction("App was resumed and new room list items arrived", null)
}