OOM分析
1. TOP5设备型号
Endpoint:
Method: POST
Type: RAW
URL: {{host}}/exception/top-dimension/crash
Headers:
Key | Value |
---|---|
Accept | application/json, text/plain, / |
Query params:
Key | Value |
---|---|
sort | exception |
Body:
{
"timePeriod": {{timePeriod}},
"endTime": {{endTime}},
"datasource": "APP_EXCEPTION_DATA",
"dimensions": [
"manufacturerId",
"manufacturerModelId"
],
"filters": [
{
"name": "mobileAppId",
"value": [
{{mobileAppId}}
],
"operator": "IN"
}
],
"render": "list",
"limit": 5
}
2. TOP5操作系统
Endpoint:
Method: POST
Type: RAW
URL: {{host}}/exception/top-dimension/oom
Headers:
Key | Value |
---|---|
Accept | application/json, text/plain, / |
Query params:
Key | Value |
---|---|
sort | exception |
Body:
{
"timePeriod": {{timePeriod}},
"endTime": {{endTime}},
"datasource": "APP_EXCEPTION_DATA",
"dimensions": [
"osId",
"osVersionId"
],
"filters": [
{
"name": "mobileAppId",
"value": [
{{mobileAppId}}
],
"operator": "IN"
}
],
"render": "list",
"limit": 5
}