最近更新时间:2023-03-30 11:36:36
本接口用于根据已有仪表盘创建告警策略
该接口无特有请求头。获取更多信息,请参见公共请求头
参数详情具体如下表。
参数名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
name | String | 是 | 告警名称 |
projectName | String | 是 | 工程名称 |
dashboardId | String | 是 | 仪表盘id |
dashboardName | String | 是 | 仪表盘名称 |
queries | List | 是 | 查询 |
condition | String | 是 | 触发条件 |
scheduleType | Long | 是 | 频率类型:0:间隔时间 4:cron |
fixInterval | String | 否 | 间隔时间 |
cronExpr | String | 否 | 频率为cron的表达式 |
notifyInterval | Long | 否 | 通知间隔 |
notifyThreshold | Long | 是 | 触发次数阈值 |
enabled | Integer | 是 | 是否启用 0:不启用 1: 启用 |
channelParam | Map | 否 | 报警渠道配置 |
querie字段说明:
参数名称 | 类型 | 描述 |
---|---|---|
logPoolName | String | 日志池名称 |
graphName | String | 图表名称 |
start | String | 查开始区间 |
end | String | 查询结束区间 |
query | String | 查询语句 |
channelParam字段说明:
参数名称 | 类型 | 描述 |
---|---|---|
usrgrpId | Integer | 告警接收组id,需要在云监控查询 |
channelType | Integer | 报警类型 1:邮件 2: 短信 3:邮件和短信 |
emailContent | String | 邮件报警内容格式 |
smsContent | String | 短信报警内容格式 |
参数详情具体如下表。
参数名称 | 类型 | 描述 |
---|---|---|
status | Integer | 状态码 |
message | String | 状态信息 |
POST /CreateLogPolicy HTTP/1.1
Authorization: <AuthorizationString>
x-klog-api-version: 0.1.0
Host:klog.api.ksyun.com
x-klog-signature-method: hmac-sha1
Date: <GMT Date>
Content-Type: application/json
Content-MD5: <Content-MD5>
Content-Length: <ContentLength>
Connection: Keep-Alive
{
"name": "my-test",
"projectName": "test",
"dashboardId": "1",
"dashboardName": "Warning",
"queries": [
{
"logPoolName": "test",
"graphName": "Warning",
"start": "-300s",
"end": "now",
"query": "select count (*) as c where type='Warning'"
}
],
"channelParam": {
"usrgrpId": 11,
"channelType": 3,
"emailContent": "Warning警示事件,发生告警,请排查相关问题"
},
"condition": "$0.c>0",
"scheduleType": 0,
"fixInterval": "5m",
"notifyThreshold": 1,
"notifyInterval": 0,
"enabled": 1
}
HTTP/1.1 200
Server: nginx
Content-Length: 0
Connection: close
Access-Control-Allow-Origin: *
Date: Sun, 27 May 2018 07:43:27 GMT
x-klog-requestid: 5B0A619F205DC3F30EDA9322
{
"status": 0,
"message": "成功",
}
纯净模式