跳转至

告警操作

通过以下步骤认领和关闭告警

可以通过alertId和eventId两种传参方式来实现,两种方式的接口不同,注意选择对应的api接口


示例(eventId)

认领请求cURl(eventId):

curl --location --request GET 'https://caweb.aiops.com/api/alert/rest/api/v1/alert/ack/<eventId>' \
--user 'email@example.com:<access_token>' \
--header 'Accept: application/json

关闭请求cURl(eventId):

curl --location --request GET 'https://caweb.aiops.com/api/alert/rest/api/v1/alert/resolve/<eventId>' \
--user 'email@example.com:<access_token>' \
--header 'Accept: application/json
url中eventId应替换为真实的eventId
示例邮箱应替换为用户注册所用邮箱
access_token应替换为您手动获取的access_token

access_token如何获取请参考文档 api令牌

提示

• 如需对请求进行加密处理:请将
--user 'email@example.com:access_token' \

--header 'Accept: application/json'

替换为:

--header 'Authorization: Basic Z2FveWluaW5nOTk5NUAxNjMuY29tOmt1WWl6bmljZ3oxN0JBVjk=' \

--header 'Content-Type: application/json'

• 替换步骤请参考加密步骤

示例(alertId)

认领请求cURl(alertId):

curl --location --request GET 'https://caweb.aiops.com/api/alert/rest/api/v1/alert1/ack/<alertId>' \
--user 'email@example.com:<access_token>' \
--header 'Accept: application/json

关闭请求cURl(alertId):

curl --location --request GET 'https://caweb.aiops.com/api/alert/rest/api/v1/alert1/resolve/<alertId>' \
--user 'email@example.com:<access_token>' \
--header 'Accept: application/json
url中alertId应替换为真实的alertId
示例邮箱应替换为用户注册所用邮箱
access_token应替换为您手动获取的access_token

access_token如何获取请参考文档 api令牌

提示

• 如需对请求进行加密处理:请将
--user 'email@example.com:access_token' \

--header 'Accept: application/json'

替换为:

--header 'Authorization: Basic Z2FveWluaW5nOTk5NUAxNjMuY29tOmt1WWl6bmljZ3oxN0JBVjk=' \

--header 'Content-Type: application/json'

• 替换步骤请参考加密步骤

返回参数

参数 类型 说明
result string 状态

返回示例

{
"result":"success",
"message":null,
"data":null,
"totalCount":0,
"code":200
}

200:成功

400:失败,传入的参数有问题

401:认证失败,用户名密码错误