2015-02-17 12:26:41 +01:00
|
|
|
/*
|
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
|
|
*/
|
2015-03-24 13:06:06 +01:00
|
|
|
package org.elasticsearch.watcher.condition;
|
2015-02-17 12:26:41 +01:00
|
|
|
|
2015-03-24 13:06:06 +01:00
|
|
|
import org.elasticsearch.watcher.condition.script.ScriptCondition;
|
|
|
|
import org.elasticsearch.watcher.condition.simple.AlwaysFalseCondition;
|
|
|
|
import org.elasticsearch.watcher.condition.simple.AlwaysTrueCondition;
|
2015-02-17 12:26:41 +01:00
|
|
|
import org.elasticsearch.common.inject.AbstractModule;
|
|
|
|
import org.elasticsearch.common.inject.multibindings.MapBinder;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class ConditionModule extends AbstractModule {
|
|
|
|
|
|
|
|
private final Map<String, Class<? extends Condition.Parser>> parsers = new HashMap<>();
|
|
|
|
|
|
|
|
public void registerCondition(String type, Class<? extends Condition.Parser> parserType) {
|
|
|
|
parsers.put(type, parserType);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void configure() {
|
|
|
|
|
|
|
|
MapBinder<String, Condition.Parser> parsersBinder = MapBinder.newMapBinder(binder(), String.class, Condition.Parser.class);
|
Now input is separate from condition and condition just contains the decision logic.
```
"input": {
"search": {
"request": {
"body": {
"query": {
"match_all": {}
}
}
}
}
},
"condition": {
"script": {
"script": "return true"
}
},
```
The result of this in the `alert_execution` looks like :
```
"input_result": {
"search": {
"payload": {
"hits": {
"total": 1,
"hits": [
{
"_type": "my-type",
"_source": {
"field": "value"
},
"_id": "AUujS61M4FTW2U3Ztz5U",
"_index": "my-index",
"_score": 0.30685282
}
],
"max_score": 0.30685282
},
"_shards": {
"total": 5,
"failed": 0,
"successful": 5
},
"timed_out": false,
"took": 1823
},
"request": {
"body": {
"query": {
"match_all": {}
}
}
}
}
}
"condition_result": {
"script": {
"met": true
}
}
```
There are two Inputs currently the `SearchInput` as shown above and a `SimpleInput` that just contains a payload that will be returned in the result.
There are three conditions, the `ScriptCondition` as shown above and an `AlwaysTrueCondition` and AlwaysFalseCondition` condition.
Original commit: elastic/x-pack-elasticsearch@0d8ac24c5a9c3b3758d1fcae31872dc91c8e3724
2015-02-19 14:50:06 -05:00
|
|
|
bind(ScriptCondition.Parser.class).asEagerSingleton();
|
|
|
|
parsersBinder.addBinding(ScriptCondition.TYPE).to(ScriptCondition.Parser.class);
|
|
|
|
bind(AlwaysFalseCondition.Parser.class).asEagerSingleton();
|
|
|
|
parsersBinder.addBinding(AlwaysFalseCondition.TYPE).to(AlwaysFalseCondition.Parser.class);
|
|
|
|
bind(AlwaysTrueCondition.Parser.class).asEagerSingleton();
|
|
|
|
parsersBinder.addBinding(AlwaysTrueCondition.TYPE).to(AlwaysTrueCondition.Parser.class);
|
2015-02-17 12:26:41 +01:00
|
|
|
|
|
|
|
for (Map.Entry<String, Class<? extends Condition.Parser>> entry : parsers.entrySet()) {
|
|
|
|
bind(entry.getValue()).asEagerSingleton();
|
|
|
|
parsersBinder.addBinding(entry.getKey()).to(entry.getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
bind(ConditionRegistry.class).asEagerSingleton();
|
|
|
|
}
|
|
|
|
}
|