User analytics
We have two ways of tracking user activity in Moped. Edit activities are tracked in the moped_activity_log
table, and we also collect certain usage metrics, which are stored in the moped_user_events
table.
User event data
There are currently two event types available:
app_load
- created whenever a user opens Moped in a browser tab, or when the user refreshes the page.dashboard_load
- created whenever a user navigates to the Dasboard pageprojects_map_load
- created whenever a user navigates to the Projects map page
It would be fairly easy to add additional event types. Ask a dev.
Querying event data
You can connect to the Moped Read Replica database and query usage metrics. For example, this query counts the number of events by user per day
Activity log data
The activity log data can be queried to see user edit activities
Querying activity data
This query retrieves the number of edits by user by day
Last updated
Was this helpful?