Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Notification System on ELK [closed]

I have an ELK stack. I need to get email notifications based on certain queries. How could I achieve this behavior using only open source software?

like image 465
Avik Das Avatar asked Sep 29 '15 21:09

Avik Das


Video Answer


1 Answers

I will sugest to have a look at elastalert :

https://github.com/Yelp/elastalert

it covers ( under apache licence ) following use cases :

"Match where there are X events in Y time" (frequency type)

  • "Match when the rate of events increases or decreases" (spike type)

  • "Match when there are less than X events in Y time" (flatline type)

  • "Match when a certain field matches a blacklist/whitelist" (blacklist and whitelist type)
  • "Match on any event matching a given filter" (any type)
  • "Match when a field has two different values within some time" (change type)
  • "Match when a never before seen term appears in a field" (new_term type)
  • "Match when the number of unique values for a field is above or below a threshold (cardinality type)
like image 177
David Avatar answered Oct 10 '22 17:10

David