There are multiple timesofday{appID} collections, one collection for each specific app.
Collection name is formed using "timesofday" string and app ID.
So for example for app with ID "542e95d747f0be510c000004" the collection name would be: "timesofday542e95d747f0be510c000004"
Collection contains data about the events count per month, day and hour.
Here is the list of fields available:
Field | Description | Example |
---|---|---|
_id | ID formed by {segment}_{year}:{month} | Login_2018:1 |
d | Data for specific document. i.e. The event happened 6 times on Thursday(day 5) at 11 o'clock. | "5" : { "11" : { "count" : 6 } } |
m | Year and month | 2018:1 |
s | Segment | Login |
a | Application ID | 542e95d747f0be510c000004 |
Here's is how an example document could look like
{
"_id": "Login_2018:1",
"m" : "2018:1",
"a" : "542e95d747f0be510c000004",
"s" : "Login",
"d" : {
"0" : {
"2" : {
count: 43
},
"18" : {
count: 88
}
},
"5" : {
"11" : 6
}
}
}