blob: 5a295454b4a29e5e6584c96bc787694355be16c1 [file] [log] [blame]
ac25505082fd72018-03-20 12:35:48 +01001{
2 "query" : {
3 "bool": {
4 "must": [
5 { "match": { "closedLoopEventStatus": "ABATED" } }
6 ]
7 }
8 },
9 "script_fields" : {
10 "closedLoopAlarmDuration" : {
11 "script" : {
12 "lang": "painless",
13 "source": "
14if (doc.get('closedLoopEventStatus.keyword').value == 'ABATED') {
15 return doc.get('closedLoopAlarmEnd').value - doc.get('closedLoopAlarmStart').value;
16}
17return null
18"
19 }
20 }
21 , "closedLoopAlarmStart" : {
22 "script" : {
23 "lang": "painless",
24 "source": "doc['closedLoopAlarmStart']"
25 }
26 }
27 , "closedLoopAlarmEnd" : {
28 "script" : {
29 "lang": "painless",
30 "source": "doc['closedLoopAlarmEnd']"
31 }
32 }
33 }
34}