countly.crashdata

Follow

Crash Analytics plugin required

This collection might not appear if you don't have crash analytics plugin enabled

Collection crashdata contains break down of new, total and unique crashes by time periods.

For shorter representation, these stats are abbreviated as:

  • cr - crash
  • cru - unique crash
  • crf - fatal crash
  • crnf - none fatal crash

There are two types of documents available:

  1. Zero document, which id is formed from {appID}_{year}:0 And it contains stats breakdown by months and weeks for the specified year
  2. Month document, which id is formed from {appID}_{year}:{month} And it contains stats breakdown by days of the month

Here is the list of possible fields

Field Description Example
_id ID formed by {appID}{year}:0 or {appID}{year}:{month} 542e95d747f0be510c000004_2014:10
a App ID 542e95d747f0be510c000004
d Data for specific document { "14": { "16": { "cr": 1, "crf": 1 }, "cr": 1, "crf": 1 } }
m {year}:{month} for which data is provided 2014:10

 

Here are examples of both document types:

Zero document Month document
{
    "_id": "56e534f0a941253d470e1196_2016:2",
    "m": "2016:2",
    "a": "56e534f0a941253d470e1196",
    "d": {
        "14": {
            "16": {
                "cr": 1,
                "crf": 1
            },
            "cr": 1,
            "crf": 1
        }
    }
}

Custom Countly metrics

Same collection data pattern is also used in other custom Countly metrics you might want to use in your Countly installation

Looking for help?