mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Merge pull request #5098 from vector-im/sync-analytics-plan
Sync analytics plan
This commit is contained in:
commit
57fc623995
1 changed files with 9 additions and 4 deletions
|
@ -46,12 +46,14 @@ data class PerformanceTimer(
|
||||||
|
|
||||||
enum class Name {
|
enum class Name {
|
||||||
/**
|
/**
|
||||||
* The time spent parsing the response from an initial /sync request.
|
* The time spent parsing the response from an initial /sync request. In
|
||||||
|
* this case, `itemCount` should contain the number of joined rooms.
|
||||||
*/
|
*/
|
||||||
InitialSyncParsing,
|
InitialSyncParsing,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The time spent waiting for a response to an initial /sync request.
|
* The time spent waiting for a response to an initial /sync request. In
|
||||||
|
* this case, `itemCount` should contain the number of joined rooms.
|
||||||
*/
|
*/
|
||||||
InitialSyncRequest,
|
InitialSyncRequest,
|
||||||
|
|
||||||
|
@ -62,13 +64,16 @@ data class PerformanceTimer(
|
||||||
NotificationsOpenEvent,
|
NotificationsOpenEvent,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The duration of a regular /sync request when resuming the app.
|
* The duration of a regular /sync request when resuming the app. In
|
||||||
|
* this case, `itemCount` should contain the number of joined rooms in
|
||||||
|
* the response.
|
||||||
*/
|
*/
|
||||||
StartupIncrementalSync,
|
StartupIncrementalSync,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The duration of an initial /sync request during startup (if the store
|
* The duration of an initial /sync request during startup (if the store
|
||||||
* has been wiped).
|
* has been wiped). In this case, `itemCount` should contain the number
|
||||||
|
* of joined rooms.
|
||||||
*/
|
*/
|
||||||
StartupInitialSync,
|
StartupInitialSync,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue