Crash Analytics plugin required
This collection might not appear if you don't have crash analytics plugin enabled
There are multiple app_crashgroups{appID} collections, one collection for each specific app.
Collection name is formed using "app_crashgroups" string and app ID.
So for example for app with ID "542e95d747f0be510c000004" the collection name would be: "app_crashgroups542e95d747f0be510c000004"
Collection contains groups in which crash reports were categorized
This collection contains one special document with meta as _id field value. And it contains overall information about crashes
Here is the list of fields available:
Field | Description | Example |
---|---|---|
_id | Unique id of the report | 5705d7a5e7313e322d2ae037 |
os | Operating system | Android |
startTs | Timestamp of first error | 1460488138 |
lastTs | Timestamp when last error occurred | 1460703781 |
name | Error name | java.lang.NoSuchMethodError: com.domain.app.Exception |
error | Error stack | java.lang.IllegalStateException: com.domain.app.Exception at com.domain.app.(Activity.java:0) at com.domain.app.(Activity.java:32) at com.domain.app.(Activity.java:64) at com.domain.app.(Activity.java:96) at com.domain.app.(Activity.java:128) at com.domain.app.(Activity.java:160) at com.domain.app.(Activity.java:192) at com.domain.app.(Activity.java:224) at com.domain.app.(Activity.java:256) |
nonfatal | Are all errors in this group handled | true |
is_new | Are there unviewed crashes in this group | true |
is_resolved | Is this error resolved | false |
is_hidden | Crash is hidden and does not appear in Crash filters | false |
is_public | Crash is publicly shared | true |
share | What sensitive data of crash is publicly shared | { "reports": 1, "loss": 1, "users": 1 } |
latest_version | Latest/newest app version that had this error | 2.9 |
reports | Amount of crash reports in this group | 11 |
users | Amount of unique users in this group | 11 |
os_version | Breakdown of users by OS version | { "4:2": 1, "7:1": 1, "4:0": 1, "3:1": 1, "4:1": 2, "4:3": 1, "2:2": 1, "5:0": 1, "4:4": 1, "3:2": 1 } |
manufacture | Breakdown of users by Manufacture | { "Samsung": 1, "Apple": 3, "Sony Ericsson": 2, "Google": 3, "Nokia": 2 } |
device | Breakdown of users by Device | { "Nexus 4": 1, "Nexus 5": 2, "One S": 1, "iPhone 5": 3, "iPad 4": 1, "Xperia Z": 1, "iPhone 5C": 1, "Optimus L5": 1 } |
resolution | Breakdown of users by Resolution | { "800x1280": 2, "600x1024": 2, "768x1024": 1, "640x960": 1, "1080x1920": 1, "640x1136": 2, "240x400": 1, "320x568": 1 } |
app_version | Breakdown of users by App Version | { "2:2": 1, "2:8": 3, "1:7": 1, "1:8": 1, "2:4": 1, "1:2": 1, "2:1": 1, "2:7": 1, "2:9": 1 } |
cpu | Breakdown of users by CPU architecture | { "armv6": 3, "armv7": 5, "x86": 3 } |
opengl | Breakdown of users by OpenGL | { "opengl_es1": 6, "opengl_es2": 5 } |
orientation | Breakdown of users by Orientation | { "portrait": 6, "landscape": 5 } |
custom | Breakdown of users by custom provided segments | { "facebook": { "1:8": 1, "2:9": 1, "2:8": 2, "2:3": 1, "1:0": 1 } } |
root | Breakdown of users by having rooted/jailbroken devices | { "no": 6, "yes": 5 } |
online | Breakdown of users by being online in time of crash | { "yes": 8, "no": 3 } |
muted | Breakdown of users by being muted in time of crash | { "no": 7, "yes": 4 } |
background | Breakdown of users by app being in background in time of crash | { "no": 7, "yes": 4 } |
ram | Breakdown of ram amount in total, min, max | { "total": 627.3, "count": 11, "min": 5.4, "max": 92.82 } |
bat | Breakdown of battery amount in total, min, max | { "total": 445, "count": 11, "min": 9, "max": 87 } |
disk | Breakdown of disk usage amount in total, min, max | { "total": 422.23, "count": 11, "min": 0.05, "max": 76.66 } |
run | Breakdown of app running time in total, min, max | { "total": 9684, "count": 11, "min": 103, "max": 1415 } |
Here's is how an example document could look like
{
"_id": "6b10143a0d3e0f3a3ac9f977681941a3c611888f",
"os": "Android",
"lastTs": 1460703781,
"name": "java.lang.NoSuchMethodError: com.domain.app.Exception",
"error": "java.lang.NoSuchMethodError: com.domain.app.Exception\nat com.domain.app.(Activity.java:0)\nat com.domain.app.(Activity.java:32)\nat com.domain.app.(Activity.java:64)\nat com.domain.app.(Activity.java:96)\nat com.domain.app.(Activity.java:128)\nat com.domain.app.(Activity.java:160)",
"nonfatal": true,
"is_new": true,
"is_resolved": false,
"startTs": 1460488138,
"latest_version": "2.9",
"reports": 11,
"users": 11,
"os_version": {
"4:2": 1,
"7:1": 1,
"4:0": 1,
"3:1": 1,
"4:1": 2,
"4:3": 1,
"2:2": 1,
"5:0": 1,
"4:4": 1,
"3:2": 1
},
"manufacture": {
"Samsung": 1,
"Apple": 3,
"Sony Ericsson": 2,
"Google": 3,
"Nokia": 2
},
"device": {
"Nexus 4": 1,
"Nexus 5": 2,
"One S": 1,
"iPhone 5": 3,
"iPad 4": 1,
"Xperia Z": 1,
"iPhone 5C": 1,
"Optimus L5": 1
},
"resolution": {
"800x1280": 2,
"600x1024": 2,
"768x1024": 1,
"640x960": 1,
"1080x1920": 1,
"640x1136": 2,
"240x400": 1,
"320x568": 1
},
"app_version": {
"2:2": 1,
"2:8": 3,
"1:7": 1,
"1:8": 1,
"2:4": 1,
"1:2": 1,
"2:1": 1,
"2:7": 1,
"2:9": 1
},
"cpu": {
"armv6": 3,
"armv7": 5,
"x86": 3
},
"opengl": {
"opengl_es1": 6,
"opengl_es2": 5
},
"orientation": {
"portrait": 6,
"landscape": 5
},
"custom": {
"gideros": {
"1:1": 2,
"2:7": 1,
"2:0": 1
},
"admob": {
"2:9": 1,
"1:6": 2,
"1:2": 1,
"1:1": 1,
"2:5": 1
},
"googleplay": {
"2:1": 1,
"1:5": 2,
"2:8": 1,
"2:9": 1
},
"chartboost": {
"1:6": 1,
"1:0": 1
},
"facebook": {
"1:8": 1,
"2:9": 1,
"2:8": 2,
"2:3": 1,
"1:0": 1
}
},
"root": {
"no": 6,
"yes": 5
},
"online": {
"yes": 8,
"no": 3
},
"muted": {
"no": 7,
"yes": 4
},
"background": {
"no": 7,
"yes": 4
},
"ram": {
"total": 627.3,
"count": 11,
"min": 5.4,
"max": 92.82
},
"bat": {
"total": 445,
"count": 11,
"min": 9,
"max": 87
},
"disk": {
"total": 422.23,
"count": 11,
"min": 0.05,
"max": 76.66
},
"run": {
"total": 9684,
"count": 11,
"min": 103,
"max": 1415
}
}
{
"_id": "meta",
"reports": 1628,
"users": 973,
"isnew": 175,
"crashes": 180,
"nonfatal": 803,
"os": {
"iOS": 501,
"Windows Phone": 556,
"Android": 571
},
"app_version": {
"2:2": 56,
"3:2": 63,
"2:4": 60,
"3:0": 72,
"2:9": 81,
"3:1": 77,
"1:8": 68,
"1:0": 81,
"1:9": 70,
"1:4": 66,
"1:3": 67,
"1:2": 58,
"2:5": 69,
"2:7": 70,
"1:7": 87,
"2:3": 89,
"1:1": 69,
"2:0": 76,
"2:1": 67,
"2:6": 68,
"1:5": 64,
"1:6": 80,
"2:8": 70
},
"usersfatal": 612,
"loss": 1273.3300000000002,
"fatal": 825,
"resolved": 0,
"reoccurred": 1
}