申请企业微信公众号在这里我就不详细说明了,大家可以看看网上的教程去申请
下面主要介绍一下该插件的使用方法
首先你要确保你已经安装好了python的报警框架elastalert(https://github.com/Yelp/elastalert.git)
具体的安装方法可以参考官方的文档https://elastalert.readthedocs.io/en/latest/running_elastalert.html
下面我以克隆仓库安装为例
- (1)克隆代码
git clone https://github.com/Yelp/elastalert.git
- (2)使用python2.7的pip管理工具安装依赖包
pip install -r requirements.txt
pip install -r requirements-dev.txt
- (3)执行安装
python2.7 setup.py install
修改配置文件
打开config/config.yaml按照里面的说明进行配置,其中es_rules中放置的是我写的一个wechat规则模板大家可以简单修改一下继续使用
将elastalert_wechat_plugin目录下的所有文件拷贝到elastalert目录下即可
创建Elasticsearch索引
进入我们的项目目录./elastalert/elastalert/ 执行
python2.7 create_index.py --config ../config/config.yaml --host es_host --port ex_post --username es_username --password es_password --no-ssl --no-verify-certs
这个命令会在elasticsearch创建索引,便于ElastAlert将有关其查询及其警报的信息和元数据保存回Elasticsearch。这不是必须的步骤,但是强烈建议创建。因为对于审计,测试很有用,并且重启elastalert不影响计数和发送alert。默认情况下,创建的索引叫 elastalert_status
启动
python2.7 -m elastalert.elastalert --verbose --config config/config.yaml --rule es_rules/wechart.yaml
config指定配置文件路径 rule指定你的微信报警文件
如果需要更加详细的安装过程以及说明请参考我的今日头条呦今日头条
启动
docker run -d hellolinux/elastalert_wechat_plugin:latest
下载git代码https://github.com/Hello-Linux/elastalert_wechat_plugin.git 之后里面有config 以及es_rules文件,将里面的配置文件以及规则配置文件修改后挂载到你的容器里面即可
cd elastalert_wechat_plugin
docker run -d -v `pwd`/config:/opt/elastalert/config -v `pwd`/es_rules:/opt/elastalert/es_rules hellolinux/elastalert_wechat_plugin:latest
Dockerfile中存在环境变量 ENV ELASTALERT_VERSION 默认数值为v0.1.38 修改为其他版本执行
docker -e ELASTALERT_VERSION=版本号
这个主要是由于logstash传递给Elasticsearch 后使用的是底层UTC时间,解决办法主要是从logstash filter 入手使用date 或者grok 自定义timestamp时间戳
date filter插件:
filter {
date {
match =>["timestamp","dd/MMM/yyyy:HH:mm:ss"]
target =>"@timestamp"
locale=>"en"
timezone =>"UTC"
}
}
上面timestamp是指你日志中的时间字段,后面的"dd/MMM/yyyy:HH:mm:ss" 指的是你的日志格式这个取决于你的日志呦不一定跟我一样
date filter插件
filter {
grok {
match => {"message" => "(?<logtime>\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2},\d{1,3})"}
}
}
上面这个只是简单的匹配日志中的时间,具体还是看自己的情况,这里是添加了一个logtime字段,由于是换了字段,你的报警插件里面的
alert_text_args:
- @timestamp
- message
@timestamp也要换成logtime字段即可
目前这个还没有时间去做,如果折中的实现方案就是在es_rules中编写多个规则来间接实现多个部门ID的告警发送
这个主要是检查你的报警规则有没有触发,其次就是你的微信公众号里面的配置是否都正确