Skip to content

Instantly share code, notes, and snippets.

@derickson
Last active September 1, 2016 15:03
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 derickson/9617befcf9333ebe858b0977a37b79e8 to your computer and use it in GitHub Desktop.
Save derickson/9617befcf9333ebe858b0977a37b79e8 to your computer and use it in GitHub Desktop.
### EXAMPLE SEARCH: Has Spotify run in the last 30 seconds?
GET /topbeat-*/_search
{
"query": {
"bool": {
"must": [
{"term": {
"proc.name": {
"value": "Spotify"
}
}},
{"range": {
"@timestamp": {
"gte": "now-30s"
}
}}
]
}
}
}
### Clear the spotify watch
DELETE /_watcher/watch/spotify_watch
### Insert the spotify watch with email action
PUT /_watcher/watch/spotify_watch
{
"trigger" : {
"schedule" : { "interval" : "10s" }
},
"input" : {
"search" : {
"request" : {
"indices" : [ "topbeat-*" ],
"body" : {
"query": {
"bool": {
"must": [
{"term": {
"proc.name": {
"value": "Spotify"
}
}},
{"range": {
"@timestamp": {
"gte": "now-30s"
}
}}
]
}
}
}
}
}
},
"condition" : {
"compare" : { "ctx.payload.hits.total" : { "gt" : 0 }}
},
"actions" : {
"email_administrator" : {
"throttle_period": "1m",
"email" : {
"to" : "dave@elastic.co",
"subject" : "Dave is listening to spotify at work",
"body" : "sent from watcher"
}
}
}
}
### Insert the spotify watch with Slack action
PUT /_watcher/watch/spotify_watch
{
"trigger" : {
"schedule" : { "interval" : "10s" }
},
"input" : {
"search" : {
"request" : {
"indices" : [ "topbeat-*" ],
"body" : {
"query": {
"bool": {
"must": [
{"term": {
"proc.name": {
"value": "Spotify"
}
}},
{"range": {
"@timestamp": {
"gte": "now-30s"
}
}}
]
}
}
}
}
}
},
"condition" : {
"compare" : { "ctx.payload.hits.total" : { "gt" : 0 }}
},
"actions" : {
"notify-slack" : {
"throttle_period" : "1m",
"slack" : {
"account": "monitoring",
"message" : {
"to" : [ "#davealerts" ],
"text" : "Encountered {{ctx.payload.hits.total}} Topbeat mentions of Spotify in the last 30 seconds: http://localhost:5601/app/kibana#/dashboard/Topbeat-Dashboard "
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment