查询一个或多个云实例中应用的崩溃信息,包括应用名称和崩溃时间点。支持的查询范围如下:
使用 GET 方式发起请求。
下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考 公共请求参数。
字段 | 位置 | 类型 | 必填 | 说明 | 值 |
|---|---|---|---|---|---|
| Action | Query | string | 是 | 公共参数,OpenAPI 接口名称 | GetAppCrashLog |
| Version | Query | string | 是 | 公共参数,OpenAPI 接口版本 | 2022-08-01 |
| product_id | Query | string | 是 | 业务 ID | 例:client-demo |
| pod_id_list | Query | []string | 是 | 实例 ID 列表 | 支持的最大实例数量为 100 |
| start_time | Query | int64 | 是 | 查询起始时间,秒级时间戳 | 例:1649399462 |
| end_time | Query | int64 | 是 | 查询结束时间,秒级时间戳 | 例:1649399462 |
通用返回参数,请参考 ResponseMetadata 结构说明。
Result 字段包含以下参数:
字段 | 类型 | 说明 |
|---|---|---|
| total | int | 查询结果总量 |
| row | List<AppCrashLog> | 查询到的应用崩溃信息,详细信息,参考 AppCrashLog 定义 |
GET https://open.volcengineapi.com?Action=GetAppCrashLog &Version=2022-08-01 &product_id=1591495366954xxxxxx &pod_id_list=7299381659819xxxxxx &pod_id_list=7299405883363xxxxxx &start_time=1699593083 &end_time=1699603083 &<通过header传入的公共请求参数>
{ "ResponseMetadata": { "Action": "GetAppCrashLog", "Region": "cn-north-1", "RequestId": "2023111016000668BADE52611A4F15BFF9", "Service": "ACEP", "Version": "2022-08-01" }, "Result": { "app_crash_log_list": [] } }