我们在配置watcher的时候,有时候期望将事件触发给自己写的服务来进行进一步的处理,这时候就需要写一些webhook了。 这里写个配置的例子。 { “actions”: { “test_webhook”: { “webhook”: { “…
Leave a Comment分类: 计算机
x-package的监控还是很强大的,但是对于告警内容的二次过滤和开发能力较弱。某些情况下,我们可能需要将数据拿出来,和我们自己开发的数据处理平台对接,对数据进行清洗之后发送告警信息给管理员。 默认从ctx.payload拿到的数据是一种很…
Leave a Comment准备工作 硬件准备 我准备了3台虚拟化机器, 安装的是centos7系统(CentOS-7-x86_64-Everything-1708.iso)的最精简安装。 网络规划 服务器的 IP地址规划为: swarm1:10.255.255.61…
1 Commentjust google swarmprom
Leave a Comment一、准备环境 依赖:Docker, Node.js >= 0.8.4 和 npm [root@dev_08 ~]# curl –silent –location https://rpm.nodesource.com/setup_7…
Leave a Comment功能超级强大的网络工具netcat A机器执行 nc -l 1234 B机器执行 nc a-ip 1234 AB之间就可以联通了, 可以当聊天工具用。 A机器执行 nc -l 1234 -e /bin/bash -k B机器执行 nc a-…
Leave a CommentTo send a directory, cd to inside the directory whose contents you want to send on the computer doing the sending and do…
Leave a Comment某些时候,docker-compose创建的默认网络可能和你现有的内网网络有地址冲突,通过以下网上可以定制创建网络的网段来规避这个问题。 version : ‘3’ services: nginx: image: nginx network…
Leave a CommentFROM busybox MAINTAINER CaiZhongzhen RUN echo “Asia/Shanghai” > /etc/timezone RUN ln -snf /usr/share/zoneinf…
Leave a Comment我的MYSQL 使用Docker进行部署的,当我进行版本升级(MySQL 5.7 to MySQL 8.0)之后,尝试进行连接的时候就会报这个错误。 解决办法: (来源https://dev.mysql.com/doc/refman/8.0…
5 Comments