The eventTimes{APP_ID} collection in Countly is primarily used for tracking event flows and storing time-based event data. It provides insights into when specific events occurred, making it useful for analyzing user interactions over time.
Collection Structure:
The collection is named countly.eventTimes{APP_ID}, where {APP_ID} represents the unique application ID.
It contains documents that track event occurrences along with their timestamps.
Document Format:
Each document follows this structure:
{
"_id": "2022:5:12:h23_1",
"e": [
{
"e": "[CLY]_session",
"t": 1652389199999
},
{
"e": "[CLY]_crash",
"t": 1553258291344,
"cid": "b4184cebaab6d64e1af529a2435b2b1f2ffa75a9"
},
{
"e": "[CLY]_view",
"t": 1553258291344,
"vid": "b4184cebaab6d64e1af529a2435b2b1f2ffa75a9"
}
]
}