Get Alert Content¶
根据组织 ID 和内容 ID 获取告警内容。
请求格式¶
POST https://{apigw-address}/event-service/v2.1/alert-contents?action=get
请求参数(URI)¶
名称 |
位置(Path/Query) |
必需/可选 |
数据类型 |
描述 |
---|---|---|---|---|
orgId |
Query |
必需 |
String |
资产所属的组织 ID。 如何获取 orgId 信息>> |
contentId |
Query |
必需 |
String |
告警内容 ID。 |
响应参数¶
名称 |
数据类型 |
描述 |
---|---|---|
data |
AlertContent 结构体 |
告警内容。AlertContent 结构体>> |
AlertContent 结构体¶
名称 |
数据类型 |
描述 |
---|---|---|
contentId |
String |
内容 ID。 |
contentDesc |
StringI18n |
告警内容描述。 |
modelId |
String |
模型 ID。 |
orgId |
String |
资产所属的组织 ID。 |
alertType |
AlertType 结构体 |
告警类型。AlertType 结构体>> |
subAlertType |
AlertType 结构体 |
子告警类型。AlertType 结构体>> |
tags |
Map |
用户自定义告警内容标签。标签的作用与表示方法>> |
updatePerson |
String |
更新人员名称。 |
updateTime |
Long |
最后一次更新时间。 |
示例¶
请求示例¶
url: https://{apigw-address}/event-service/v2.1/alert-contents?action=get&contentId=yourContentId&orgId=yourOrgId
method: POST
返回示例¶
{
"code": 0,
"msg": "OK",
"requestId": "f40fbb09-ce20-463f-bb18-6659a8bd6926",
"data": {
"contentId": "yourContentId",
"contentDesc": {
"i18nValue": {
"defaultValue": null,
"en_US": "Content desc",
"zh_CN": ""
}
},
"modelId": "ssss",
"orgId": "yourOrgId",
"updatePerson": "yj_test_customer",
"updateTime": 1546612131000,
"alertType": {
"typeId": "doubleType",
"parentTypeId": null,
"updatePerson": null,
"source": null,
"typeDesc": {
"i18nValue": {
"defaultValue": null,
"en_US": "doubleType desc",
"zh_CN": ""
}
},
"tags": {
},
"updateTime": 0
},
"subAlertType": {
"typeDesc": {
"i18nValue": {
"defaultValue": null,
"en_US": "doubleType desc",
"zh_CN": ""
}
},
"tags": {
},
"parentTypeId": null,
"updatePerson": null,
"source": null,
"updateTime": 0
},
"tags": {
}
},
"action": "get"
}
SDK 示例¶
你可以在 Github 上获取告警引擎的 SDK 示例: