You need to enable JavaScript to run this app.
导航
GetAppCPUTrend
最近更新时间:2024.07.15 16:31:30首次发布时间:2024.04.25 17:57:50

获取CPU各项指标趋势。

请求说明

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

请求参数

Query

参数类型是否必选示例值描述
ActionStringGetAppCPUTrend接口名称。当前 API 的名称为 GetAppCPUTrend
VersionString2024-04-09接口版本。当前 API 的版本为 2024-04-09

Body

参数类型是否必选示例值描述
start_timeInteger1619827200起始时间(Unix时间戳)。
end_timeInteger1619913600结束时间(Unix时间戳)。
filtersObject of Condition-筛选条件,可以指定多个键值对来筛选数据。
granularityInteger60数据粒度。例如 '60' 表示分钟级粒度。

biz_type

String

cpu

业务类型。

  • cpu:CPU指标
  • cpu_thread:CPU异常
metricStringcrash_countCPU指标。

scales

Array of String

["avg", "pct95", "pct95"]

统计度量。

  • avg:平均值
  • pct25:25分位值
  • pct50:50分位值
  • pct70:70分位值
  • pct90:90分位值
  • pct95:95分位值

Condition

参数类型是否必选示例值描述

op

String

in

操作符。

  • gt:大于
  • gte:大于等于
  • lt:小于
  • lte:小于等于
  • eq:等于
  • neq:不等于
  • in:包含
  • not_in:不包含
  • lk:模糊匹配特定模式的数据
  • nlk:排除模糊匹配的数据

type

String

expression

筛选条件类型。

  • expression:当前condition是一个表达式。
  • and:当前condition是一个复合表达式,多个sub_condition的逻辑关系是and。
  • or:当前condition是一个复合表达式,多个sub_condition的逻辑关系是or。
  • map:当前condition是map类型。
valueStringAndroid筛选值。
valuesArray of String["Android"]筛选值,支持多个。
map_keyStringkey_1map类型key,当type为map时必填。
dimensionStringaid条件的名称。
sub_conditionsArray of Condition-子条件。

返回参数

参数类型示例值描述
dataObject of MultiTrendResponseData-返回数据。
error_msgString-错误信息。
error_noInteger0错误码。

MultiTrendResponseData

参数类型示例值描述
use_rateJSON Map-用户使用率。
sample_cntObject of TrendLine-指标趋势。
sample_totalInteger100样本总量。
use_rate_avgDouble0.5平均值。

UseRate

参数类型示例值描述
keyStringmetric指标key。
valueObject of TrendLine-样本量。

TrendLine

参数类型示例值描述
nameStringtest123线的名称,在分组的情况下,name应该是分组维度的取值,比如用来显示曲线的图标。
pointsArray of TrendPoint-曲线上的点。
totalDouble总数

TrendPoint

参数类型示例值描述
alertObject of AlertPoint-提示信息。
valueDouble123指标值。
timestampLong1665417600指标发生时间(Unix时间戳)。
readable_timestampString2022-10-11指标发生时间(自然时间)。

AlertPoint

参数类型示例值描述
msgStringNo error提示信息。
alertBooleantrue是否需要提示。

请求示例

POST https://open.volcengineapi.com?Action=GetAppCPUTrend&Version=2024-04-09
{
    "start_time": 1619827200,
    "end_time": 1619913600,
    "filters": {
        "type": "and",
        "sub_conditions": [
            {
                "dimension": "apm_version",
                "type": "expression",
                "op": "in",
                "values": [
                    "1.4.5"
                ]
            },
            {
                "dimension": "device_model",
                "type": "expression",
                "op": "in",
                "values": [
                    "MI 5X"
                ]
            }
        ]
    },
    "granularity": 60,
    "biz_type": "cpu",
    "metric": "crash_count",
    "scales": [
        "avg"
    ]
}

返回示例

{
    "data": {
        "use_rate": {
            "key": "avg"
        },
        "sample_cnt": {
            "name": "test123",
            "points": [
                {
                    "alert": "-",
                    "value": 123,
                    "timestamp": 1665417600,
                    "readable_timestamp": "2022-10-11"
                }
            ]
        },
        "sample_total": 100,
        "use_rate_avg": 0.5
    },
    "error_msg": "",
    "error_no": 0
}

错误码

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