Elastalert Container to use with Kibana & Elasticsearch
470
Here is the containerized version of the alerting system Elastalert.
This image has been built on top of Ubuntu 20.04, with the steps provided by the Official Elastalert documentation
Pull the image
docker pull doctorkirk/elastalert-ubuntu:0.2.4
Meanwhile i find a way to make ENTRYPONT working properly, here's a way to make the example_rules directory permanent
mkdir /your/docker/path/elastalert
docker run -dit --name elastalert doctorkirk/elastalert-ubuntu:0.2.4
cd /your/docker/path/elastalert
docker cp elastalert:/elastalert/example_rules .
vi config.yaml
rules_folder: example_rules
run_every:
minutes: 1
buffer_time:
minutes: 15
es_host: localhost
es_port: 9200
writeback_index: elastalert_status
writeback_alias: elastalert_alerts
alert_time_limit:
days: 2
*This is a sample file, customize it accordingly to your needs
docker rm -f elastalert
docker run -dit \
--name elastalert \
-v /your/docker/path//elastalert/config.yaml:/elastalert/config.yaml \
-v /your/docker/path//elastalert/example_rules:/elastalert/example_rules \
--restart=unless-stopped \
doctorkirk/elastalert-ubuntu:0.2.4
Content type
Image
Digest
Size
208.2 MB
Last updated
over 5 years ago
docker pull doctorkirk/elastalert-ubuntu:0.2.4