zabbix配置钉钉告警12345678910111213141516171819#!/usr/bin/env bashtpo=$1suject=$2text=$3curl -i -x POST https://oapi.dingtalk.com/robot/send?access_token=474458dfd054bf80afdfeed6afbd4390c9ba0b872786176ff94d404a0ab805bd -H 'Content-Type: application/json' \-d ' { "msgtype": "text", "text": { "content":" '监控报警:' '"$text"'" }, "at":{ "atMobiles":[ "$1" ], "isAtAll": false } }'