mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
This commit enables loading of alerts from the .alerts index and adds the Quartz scheduler. You can add the following alert : ```` curl -XPOST http://localhost:9200/.alerts/alert/myTestAlert -d '{ "query" : "myAlertQuery", "schedule" : "00 * * * * ?", "trigger" : { "numberOfEvents" : ">1" }, "timeperiod" : 300, "action" : { "email" : [ "brian.murphy@elasticsearch.com" ] }, "version" : 1, "lastRan" : "2014-05-05T12:12:12.123Z" } ```` With the following search template: ```` curl -XPOST localhost:9200/_search/template/myAlertQuery -d '{ "template" : { "query" : { "match_all" : {} } } }' ```` This will execute the search every minute and trigger if there is more than one match (which there will be). Original commit: elastic/x-pack-elasticsearch@708f927914
alerting
This is the elasticsearch alerting plugin repo.
Description
Languages
Java
99.5%
Groovy
0.4%