获取筛选条件。
ServiceName : apmplus_openapi Region : cn-beijing X-App-Ids : xxx Content-Type : application/json
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | MiniProGetFieldKeys | 接口名称。当前 API 的名称为 MiniProGetFieldKeys 。 |
Version | String | 是 | 2024-03-12 | 接口版本。当前 API 的版本为 2024-03-12 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
common | Object of Common | 是 | - | 通用参数。 |
ev_type | String | 是 |
| 模块类型。
|
filter_conditions | Object of FilterConditions | 否 | - | 时间区间。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
aid | Long | 是 | 12345 | 应用ID。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
type | String | 是 |
| 筛选条件类型。
|
field | String | 否 | pid | 条件字段。 |
op | String | 否 | in | 条件符号,可选值有eq,neq,lt,lte,gt,gte,in,not_in,regex,not_regex。 |
values | Array of String | 否 | ["数据探索"] | 条件值,可选值集合由GetFieldValues 方法获取。 |
children | Array of FilterConditions | 否 | - | 子参数。当type值为and 时必填。children下还可以继续嵌套,与op、field、values不可以共存。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
data | Array of Data | - | 返回内容。 |
error_msg | String | - | 错误信息。 |
error_no | Integer | 0 | 错误吗。0为成功。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
name | String | pid | 筛选维度。 |
description | String | pid | 筛选维度描述。 |
renderForm | String | RegexAndNotRegexEqAndNeqSymbol | 筛选维度支持的筛选方式。 |
POST https://open.volcengineapi.com?Action=MiniProGetFieldKeys&Version=2024-03-12 { "ev_type": "performance", "common": { "aid": 12345 }, "filter_conditions": { "type": "and", "children": [ { "op": "in", "field": "pid", "values": [ "数据探索" ] } ] } }
{ "err_detail":"", "data":[ { "name":"pid", "description":"pid", "renderForm":"RegexAndNotRegexEqAndNeqSymbol", "isDefault":false } ], "error_msg":"", "error_no":0 }
本接口无特有的错误码。更多信息请参见错误码。