1

ウォッチャーをインストールして条件を与えます。条件を指定しているときに、エラーが発生しました...

{"error":"WatcherException[failed to put watch [log_error_watch]]; nested: ScriptConditionValidationException[failed to compile script [return ctx.payload.hits.total > 5] with lang [groovy] of type [INLINE]]; nested: ScriptException[dynamic scripting for [groovy] disabled]; ","status":500}

動的スクリプトとは何ですか? 無効になっているというエラーが表示されます。ウォッチャーに対する私の条件は次のとおりです。

curl -XPUT 'http://localhost:9200/_watcher/watch/log_error_watch' -d '{
  "metadata" : { 
    "color" : "red"
  },
  "trigger" : { 
    "schedule" : {
      "interval" : "10s"
    }
  },
  "input" : { 
    "search" : {
      "request" : {
        "search_type" : "count",
        "indices" : "logs",
        "body" : {
          "query" : { "match" : { "status" : "error" } }
        }
      }
    }
  },
  "condition" : { 
    "script" : "return ctx.payload.hits.total > 5"
  },
  "transform" : { 
    "search" : {
        "request" : {
          "indices" : "logs",
          "body" : {
            "query" : { "match" : { "status" : "error" } }
          }
        }
    }
  },
  "actions" : { 
    "my_webhook" : {
      "webhook" : {
        "method" : "GET",
        "host" : "mylisteninghost",
        "port" : 9200,
        "path" : "/{{watch_id}}",
        "body" : "Encountered {{ctx.payload.hits.total}} errors"
      }
    },
    "email_administrator" : {
      "email" : {
        "to" : "xxxxxx.xxx@gmail.com",
        "subject" : "Encountered {{ctx.payload.hits.total}} errors",
        "body" : "Too many error in the system, see attached data",
        "attach_data" : true,
        "priority" : "high"
      }
    }
  }
}'
4

2 に答える 2

3

@andrei は、Elasticsearch で動的スクリプトを有効にする方法について正しく、同じリンクを貼り付けようとしていました。

ただし、指定した条件に基づくと、実際にはスクリプトを使用する必要はまったくないようです。Watcher にはcompare条件があり、完全に適合しているように見えます。

https://www.elastic.co/guide/en/watcher/current/condition.html#condition-compare

あなたの場合、条件は次のようになります。

    {
  ...

  "condition" : {
    "compare" : {
      "ctx.payload.hits.total" : { 
        "gte" : 5 
      }
  }
  ...
}
于 2015-06-26T14:51:08.067 に答える
0

Elasticsearch で動的スクリプトを有効にする必要があります: https://www.elastic.co/guide/en/watcher/current/condition.html#condition-script

スクリプトを評価する監視条件。デフォルトのスクリプト言語は groovy です。言語がブール値への式の評価をサポートしている限り、Elasticsearch でサポートされている任意のスクリプト言語を使用できます。口ひげと表現言語は、この条件で使用するにはあまりにも制限されていることに注意してください。詳細については、Elasticsearch リファレンスのスクリプトを参照してください。

重要

インライン スクリプトまたはインデックス付きスクリプトを使用するには、elasticsearch.yml で動的スクリプトを明示的に有効にする必要があります。

実際に動的スクリプトを有効にする: https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#enable-dynamic-scripting

于 2015-06-26T14:05:43.340 に答える