# 获取压测报告

# 接口调用说明

http 请求方式:POST
https://api.weixin.qq.com/product/decoration/wxaproduct_decoration_get_pressure_test_report?access_token=xxx

# 请求参数示例

{
    "pressure_id" : 666
}

# 回包示例

{
    "blankpage_pencent": 25,
    "aver_time_cost": 2411,
    "max_time_cost": 4390,
    "total_launch_cnt": 64786,
    "total_request_cnt": 1419,
    "network_list": [
        {
            "path": "https://cube.weixinbridge.com/cube/report/reportbizdata",
            "aver_time_cost": 82,
            "max_time_cost": 1108,
            "total_request_cnt": 1419,
            "succ_percent": 100
        }
    ],
    "appid": "wxb24cc230ace685a3",
    "run_time": 300,
    “status”: 1
    "errcode": 0,
    "errmsg":""
}

# 请求参数说明

参数 类型 是否必填 说明
pressure_id number 压测id

# 回包参数说明

参数 类型 说明
status number 1:排队中;2:压测中;3:压测失败 4:压测结束
errcode number 错误码:10007:压测id不存在;10003:获取压测报告失败,请检查压测状态;其他:系统错误
errmsg string 错误信息
blankpage_pencent number 打开页面的白页率
aver_time_cost number 打开页面的平均耗时, 单位ms
max_time_cost number 打开页面的最大耗时, 单位ms
total_launch_cnt number 共打开了多少次该页
total_request_cnt number 共发起多少次网络请求
appid string 小程序id
run_time number 压测时间, 单位s
pressure_id number 压测ID
network_list array 各网络请求的统计
network_list.path string 网络请求path
network_list.aver_time_cost number 该path的平均耗时, 单位ms
network_list.max_time_cost number 该path的最大耗时,单位ms
network_list.total_request_cnt number 共请求了多少多次该path
network_list.succ_percent number 请求该path的成功率

# 注意事项

  • 只能查询该小程序提交压测返回的pressure_id。