├── .idea ├── .name └── prometheus-alert-webhook.iml ├── Dockerfile.build ├── Dockerfile.multistage ├── LICENSE ├── README.md ├── adapter ├── Aliyun.go ├── RongLianYun.go ├── common.go ├── dingtalk.go └── wechat.go ├── alertMessage ├── alertMessage.go ├── faultAlarm.go └── faultRecovery.go ├── cmd.go ├── conf ├── conf.go └── conf.yaml ├── go.mod ├── go.sum ├── localtime ├── main.go ├── prometheus-alert-webhook.yaml └── utils └── utils.go /.idea/.name: -------------------------------------------------------------------------------- 1 | prometheus-alert-webhook -------------------------------------------------------------------------------- /.idea/prometheus-alert-webhook.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/.idea/prometheus-alert-webhook.iml -------------------------------------------------------------------------------- /Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/Dockerfile.build -------------------------------------------------------------------------------- /Dockerfile.multistage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/Dockerfile.multistage -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/README.md -------------------------------------------------------------------------------- /adapter/Aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/adapter/Aliyun.go -------------------------------------------------------------------------------- /adapter/RongLianYun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/adapter/RongLianYun.go -------------------------------------------------------------------------------- /adapter/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/adapter/common.go -------------------------------------------------------------------------------- /adapter/dingtalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/adapter/dingtalk.go -------------------------------------------------------------------------------- /adapter/wechat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/adapter/wechat.go -------------------------------------------------------------------------------- /alertMessage/alertMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/alertMessage/alertMessage.go -------------------------------------------------------------------------------- /alertMessage/faultAlarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/alertMessage/faultAlarm.go -------------------------------------------------------------------------------- /alertMessage/faultRecovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/alertMessage/faultRecovery.go -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/cmd.go -------------------------------------------------------------------------------- /conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/conf/conf.go -------------------------------------------------------------------------------- /conf/conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/conf/conf.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/go.sum -------------------------------------------------------------------------------- /localtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/localtime -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/main.go -------------------------------------------------------------------------------- /prometheus-alert-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/prometheus-alert-webhook.yaml -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joker-bai/prometheus-alert-webhook/HEAD/utils/utils.go --------------------------------------------------------------------------------