Event Submission
Apps submit events in batches:
jsonPOST /omobile/v1/telemetry/events
{
"events": [
{ "name": "product_view", "properties": { "sku": "ABC123" } },
{ "name": "add_to_cart", "properties": { "sku": "ABC123", "qty": 2 } }
]
}
Rollup
Raw telemetry is rolled up daily into omobile_telemetry_rollup via the omobile_telemetry_rollup cron event. Each row in the rollup table contains: date, platform, app_version, event_name, event_count.
Run the rollup manually:
bashwp omobile rollup
