如何通过xpack创建elasticsearch观察器

时间:2018-02-14 13:51:52

标签: elasticsearch elasticsearch-x-pack

我刚尝试使用elasticsearch,现在尝试创建第一个观察者

我在elasticsearch文档中读到了一些信息:https://www.elastic.co/guide/en/x-pack/current/watcher-getting-started.html

现在我想创建一个:

https://es.origin-test.cloud.rccf.ru/apiconnect508/_xpack/watcher/watch/audit_watch
  

PUT方法+ auth标题

我投入:

{   "trigger" : {
        "schedule": {
            "interval": "1h"
        }
    },  "actions" : {       "send_email" : { 
            "email" : { 
                "to" : "ext_avolkova@rencredit.ru", 
                "subject" : "Watcher Notification", 
                "body" : "{{ctx.payload.hits.total}}  logs found" 
            }       }   } }

但现在我看错了:

  

找不到uri的处理程序   [/ apiconnect508 / _xpack / watcher / watch / log_audit]和方法[PUT]

请帮我创建一个简单的观察者

1 个答案:

答案 0 :(得分:0)

基于support matrix,elasticsearch 2.x与x-pack不兼容。

您可能希望使用this文档将Watcher安装为单独的插件。