You need to enable JavaScript to run this app.
导航
EventTypeDetail
最近更新时间:2024.07.12 17:21:38首次发布时间:2022.11.18 15:32:33

获取具体自定义事件的category和metric聚合列表。

请求说明

  • 请求方式:POST
  • 请求地址:https://open.volcengineapi.com/?Action=EventTypeDetail&Version=2022-10-12
ServiceName: apmplus_openapi
Region: cn-beijing 
X-App-Ids: xxx
Content-Type: application/json

请求参数

Query

参数类型是否必选示例值描述
ActionStringEventTypeDetail接口名称。当前 API 的名称为 EventTypeDetail
VersionString2022-10-12接口版本。当前 API 的版本为 2022-10-12

Body

参数类型是否必选示例值描述
commonObject of CommonParams-通用参数。
time_filterObject of TimeFilter-时间区间。
event_nameStringevent_test自定义事件名。
filter_conditionsObject of FilterCondition-筛选条件。

CommonParams

参数类型是否必选示例值描述
aidLong12345应用ID。
site_typeStringweb站点类型。
envStringonline环境,填""时为全部。
osStringwebpro服务类型,可选值为webproappminipro
userStringtest_user用户名。

TimeFilter

参数类型是否必选示例值描述
start_timeInteger1665485413起始时间,单位s。
end_timeInteger1665744613终止时间,单位s。
granularityInteger3600聚合时间粒度,单位s。

FilterCondition

参数类型是否必选示例值描述
typeStringand筛选条件类型,可选值为andrule,只支持两层,第一层的type必须为and,第二层的type必须为rule。
fieldStringpid条件字段key,可选值集合由GetFieldKeys方法获取。
opStringin条件符号,可选值有eq,neq,lt,lte,gt,gte,in,not_in,regex,not_regex。
groupKeyStringcontextmap类型字段key,可选值集合由GetFieldKeys方法获取。
valuesArray of String[数据探索]条件值,可选值集合由GetFieldValues方法获取。
childrenArray of FilterCondition-如果下层还有条件,则放入该处,即type为and时必填。这一层与field,op,groupkey以及values不能同时存在。

返回参数

参数类型示例值描述
error_msgString-错误信息,成功为空。
error_noInteger-错误码,成功为0。
dataObject of EventTypeDetailResponseData-具体自定义事件的category和metric聚合列表。

EventTypeDetailResponseData

参数类型示例值描述
metric_listArray of EventTypeDetailMetric-具体自定义事件的metric聚合列表。
category_listArray of EventTypeDetailCategory-具体自定义事件的category聚合列表。

EventTypeDetailMetric

参数类型示例值描述
avgDouble1.2该metric key对应的metric value的avg聚合值。
countInteger10该metric key上报次数。
pct25Double1.0该metric key对应的metric value的pct25聚合值。
pct50Double1.2该metric key对应的metric value的pct50聚合值。
pct70Double1.3该metric key对应的metric value的pct70聚合值。
pct90Double1.4该metric key对应的metric value的pct90聚合值。
pct99Double1.5该metric key对应的metric value的pct99聚合值。
metric_nameStringmetric_key_testmetric key。

EventTypeDetailCategory

参数类型示例值描述
countInteger10该category key上报次数。
top_valuesArray of EventTypeDetailCategoryValue-该category key对应的value top20上报情况。
category_nameStringcategory_key_testcategory key。

EventTypeDetailCategoryValue

参数类型示例值描述
pctDouble0.12该category key对应的value上报量占所有value上报量的占比。
countInteger10该category key对应的value上报量。
valueStringcategory_value_test该category key对应的value。

请求示例

POST https://open.volcengineapi.com/?Action=EventTypeDetail&Version=2022-10-12
{
    "common": {
        "aid": 12345,
        "site_type": "web",
        "env": "online",
        "user": "test_user",
        "os": "webpro"
    },
    "time_filter": {
        "start_time": 1665485413,
        "end_time": 1665744613,
        "granularity": 3600
    },
    "event_name": "event_test",
    "filter_conditions": {
        "type": "and",
        "op": "in",
        "values": "[数据探索]",
        "children": [
            {
                "type": "and",
                "field": "pid",
                "op": "in",
                "values": "[数据探索]",
                "groupKey": "context",
                "children": []
            }
        ],
        "groupKey": "context",
        "field": "pid"
    }
}

返回示例

{
    "error_no": 0,
    "data": {
        "metric_list": [
            {
                "metric_name": "metric_key_test",
                "pct70": 1.3,
                "pct25": 1,
                "pct99": 1.5,
                "count": 10,
                "pct90": 1.4,
                "pct50": 1.2,
                "avg": 1.2
            }
        ],
        "category_list": [
            {
                "top_values": [
                    {
                        "pct": 0.12,
                        "value": "category_value_test",
                        "count": 10
                    }
                ],
                "count": 10,
                "category_name": "category_key_test"
            }
        ]
    },
    "error_msg": ""
}

错误码

本接口无特有的错误码。更多信息请参见错误码