Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andromedarabbit/7e720176442d6f619c9d37ffa4af2324 to your computer and use it in GitHub Desktop.
Save andromedarabbit/7e720176442d6f619c9d37ffa4af2324 to your computer and use it in GitHub Desktop.
Elasticsearch X-Pack Alerting Example
PUT _xpack/watcher/watch/outofmemoryerror
{
"trigger" : {
"schedule" : { "cron" : "0 0/4 * * * ?" }
},
"input" : {
"search" : {
"request" : {
"indices" : [
"</logstash><logstash -{now-1h/d}t{now-1h{HH}}>",
"</logstash><logstash -{now/d}t{now{HH}}>"
],
"body" : {
"query" : {
"bool" : {
"must" : {
"multi_match": {
"query": "OutOfMemoryError",
"fields": ["message", "log"]
}
},
"filter" : {
"range": {
"@timestamp": {
"from": "{{ctx.trigger.scheduled_time}}||-5m",
"to": "{{ctx.trigger.triggered_time}}"
}
}
}
}
},
"sort" : [
{ "@timestamp" : {"order" : "desc"}},
"_score"
]
}
}
}
},
"condition" : {
"compare" : { "ctx.payload.hits.total" : { "gt" : 0 }}
},
"actions" : {
"notify-slack" : {
"throttle_period" : "5m",
"slack" : {
"message" : {
"to" : [ "#ops", "@dev" ],
"text" : "로그 모니터링 알람",
"attachments" : [
{
"title" : "OutOfMemoryError",
"text" : "지난 5분 동안 해당 오류가 {{ctx.payload.hits.total}}회 발생했습니다. 가장 최근의 오류는 다음과 같습니다.",
"color" : "warning"
},
{
"fields": [
{
"title": "환경",
"value": "Prod",
"short": true
},
{
"title": "발생시각",
"value": "{{ctx.payload.hits.hits.0._source.@timestamp}}",
"short": true
},
{
"title": "메시지",
"value": "{{ctx.payload.hits.hits.0._source.message}}",
"short": false
},
{
"title": "확인명령어",
"value": "`GET /{{ctx.payload.hits.hits.0._index}}/{{ctx.payload.hits.hits.0._type}}/{{ctx.payload.hits.hits.0._id}}`",
"short": false
}
],
"color" : "warning"
}
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment