-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6220 from seadowg/analytics
Update analytics events
- Loading branch information
Showing
13 changed files
with
51 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletions
6
collect_app/src/main/java/org/odk/collect/android/instancemanagement/autosend/FormExt.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Analytics questions | ||
|
||
A list of questions asked and answered via analytics already sectioned by the date (with a 90 day recording window). | ||
|
||
## June 2024 | ||
|
||
- How often is high-res video disabled? 2% of users using video widget. | ||
- How often is `OSMWidget` used? Once. | ||
- How many users create shortcuts? 126. | ||
- How many user are using ADB to add forms/instances? 904 for Forms, 2728 for instances (500k events). | ||
- How many users are importing encrypted instances? 10. | ||
- How often is partial form finalization used? Never. | ||
- How many forms use auto send attribute? 200+ (max recordable) with 1.5k users. | ||
- How many forms use auto delete attribute? 200+ (max recordable) with 1k users. | ||
- How often is old printer widget (`ExPrinterWidget`) used? Never. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
maps/src/main/java/org/odk/collect/maps/AnalyticsEvents.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.odk.collect.maps | ||
|
||
object AnalyticsEvents { | ||
|
||
/** | ||
* Tracks how many offline layers people are importing at once | ||
*/ | ||
const val IMPORT_LAYER_SINGLE = "ImportLayerSingle" // One | ||
const val IMPORT_LAYER_FEW = "ImportLayerFew" // <= 5 | ||
const val IMPORT_LAYER_MANY = "ImportLayerMany" // > 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters