Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. curl -XPUT 'http://test45:9200/_watcher/watch/httpd_log_error_watch' -d '{
  2. "trigger" : { "schedule" : { "interval" : "10s" } },
  3. "input" : {
  4. "search" : {
  5. "request" : {
  6. "indices" : [ "httpdlogs-" ],
  7. "body" : {
  8. "query" : {
  9. "match" : { "message": "404" }
  10. }
  11. }
  12. }
  13. }
  14. },
  15. "condition" : {
  16. "compare" : { "message" : { "lte" : 404 }}
  17. },
  18. "actions" : {
  19. "email_administrator" : {
  20. "email" : {
  21. "to" : "kartik@kartikv.com",
  22. "subject" : "Encountered {{message}} 404 errors",
  23. "body" : "404 error in the weblog",
  24. }
  25. }
  26. }
  27. }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement