您好,企业微信配置webhook的步骤如下:
1. 第一种方式:通过IM机器人 发送企业微信,通知对象-钉钉/飞书/企微-新建企业微信机器人。
2.第二种方式:通过webhook方式发送,首先新建webhook,POST。URL输入的企业微信机器人链接。
通知模板中格式比较固定,您可查看企业微信官方提供的格式文档进行查看。
`{ "msgtype": "text", "text": { "content": "hello world" } }`
告警内容发送模板企业微信:
```
{
"msgtype": "text",
"text": {
"content": "告警名称: {{ .commonLabels.alertname }}\n{{if .commonLabels.clustername }}集群名称: {{ .commonLabels.clustername }}\n{{ end }}{{if eq "app" .commonLabels._aliyun_arms_involvedObject_kind }}应用名称: {{ .commonLabels._aliyun_arms_involvedObject_name }}\n{{ end }}通知策略: {{ .dispatchRuleName }} \n告警时间: {{ .startTime }} \n告警内容: {{ for .alerts }} {{ .annotations.message }}\n {{ end }}"
}
}
```
通知模板的变量说明。