ElastAlert
安装
CentOS 上安装 ElastAlert
# 安装 pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
# 安装 setuptools
pip install "setuptools>=11.3"
# 安装 gcc
yum install gcc -y
# 安装 python-devel
yum -y install python-devel
# remove rpm python-requests-2.6.0-1.el7_1.noarch
# 使用 rpm -e python-requests-2.6.0-1.el7_1.noarch 会提示有依赖包
# 使用下面命令将依赖一起移除
yum remove python-requests-2.6.0-1.el7_1.noarch