Im am quering a incident index..this index may contain documents separated by miliseconds, this is the query I have:
"query": {
"bool": {
"must": [
{
"match": {
"message": "down"
}
}
],
"filter": [
{
"range": {
"@timestamp": {
"gte": "now-1m",
"lt": "now"
}
}
}
]
}
}
This query may return sometime many incidentes, but watcher only return the first result of the payload
Is there a way to alert all the results on the payload?
