获取自定义维度values。
ServiceName: apmplus_openapi Region: cn-beijing X-App-Ids: xxx Content-Type: application/json
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetAppCustomTagValues | 接口名称。当前 API 的名称为 GetAppCustomTagValues 。 |
Version | String | 是 | 2022-10-12 | 接口版本。当前 API 的版本为 2022-10-12 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
aid | Integer | 否 | 123456 | 应用ID。 |
start_time | Integer | 是 | 1665417600 | 开始时间。 |
end_time | Integer | 是 | 1665504000 | 终止时间。 |
tag_key | String | 是 | anr_key | 标签key。 |
biz_type | String | 是 |
| 指标类型。
|
limit | Integer | 否 | 100 | 返回的数据条数,默认100。 |
filters | Object of Condition | 否 | - | 筛选条件,可以指定多个键值对来筛选数据。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
op | String | 否 |
| 操作符。
|
type | String | 否 |
| 筛选条件类型。
|
value | String | 否 | Android | 筛选值。 |
values | Array of String | 否 | ["Android"] | 筛选值,支持多个。 |
map_key | String | 否 | key_1 | map类型key,当type为map时必填。 |
dimension | String | 否 | aid | 条件的名称。 |
sub_conditions | Array of Condition | 否 | - | 子条件。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
data | Array of String | ["123456", "1234567"] | 返回的value数据。最多100条。 |
error_msg | String | success | 错误信息。 |
error_no | Integer | 0 | 错误码。成功为0。 |
POST https://open.volcengineapi.com?Action=GetAppCustomTagValues&Version=2022-10-12 { "tag_key": "anr_key", "aid": 12345, "biz_type": "crash", "limit": 100, "start_time": 1721012400, "end_time": 1721098907, "filters": { "type": "and", "sub_conditions": [ { "dimension": "os", "op": "in", "type": "expression", "values": [ "Android" ] } ] } }
{ "err_detail": "", "data": [ "app_sleeping_long", "app_memleak", "app_deadlock_or_block" ], "error_msg": "", "error_no": 0 }
本接口无特有的错误码。更多信息请参见错误码。