Transform句で複数スクリプトを登録する方法

WatcherのAlertingの設定で、transform句でスクリプトを複数登録すると、エラーになってしまいます。スクリプトを複数複数登録する方法を教えて下さい。
シミュレーション時に以下のエラーが発生します
[parse_exception] could not parse watch [inlined]. null token

Wathcerの設定が以下のようにしています
{
"trigger": {
"schedule": {
"interval": "2m"
}
},
"input": {
"search": {
"request": {
"search_type": "query_then_fetch",
"indices": [
"syslog-err-*"
],
"rest_total_hits_as_int": true,
"body": {
"query": {
"match": {
"word3": "aaa"
}
}
}
}
}
},
"condition": {
"compare": {
"ctx.payload.hits.total": {
"gte": 1
}
}
},
"actions": {
"send_email": {
"email": {
"profile": "standard",
"to": [
"XXXXXXXXXXXXXXXXXX"
],
"subject": "Watcher Notification",
"body": {
"text": "test {{ctx.payload._value}}"
}
}
}
},
"transform": [
{"script": "int a = 2;return a"},
{"script": "int b = 3;return b"}
]
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.