短信模板示例
更新时间:2019-06-14
告警成立、更新、解除时会发出如下格式的消息:
{
"uuid": "1234b503-b743-4f6c-8d1f-257979a751b4",
"name": "风机工作温度监控",
"desc": "监控第2厂区2楼风机工作温度不超过60度",
"endpointName": "myendpoint",
"topic": "sensor/floor2",
"select": "*",
"condition": "temperature > 60",
"alarmState": 1 / 0
"stateDesc": “异常” / “恢复正常",
"notifyType": "ALARM"/ “REFERSH” / “RECOVER”,
"startTime": 1497244107,
"refreshTime": 1497244107,
"recoverTime": 1497244107,
"lastMsg": {
"temperature": 68.9,
"device": "dev0003"
}
}
在填写短信服务的模板变量和报警通知方式的模板变量时,请按照如上规范。如name代表该报警通知的名称,stateDesc代表状态,消息内容则用lastMsg.temperature表示。 举例说明: 如果你的短信模板为:风机${deviceid}温度异常,当前温度${temp}。
则你的短信模板变量可以这么写(通过AS命令,将消息中的字段与短信模板中的变量关联起来):lastMsg.device AS deviceid, lastMsg.temperature AS temp。