Hello Here,
simple situation here is i have one index named hat
Mapping is herePUT hat
{
"mappings": {
"properties": {
"@timestamp": {
"type": "date"
},
"jay": {
"type": "integer"
}
}
}
}
document example
"
_source": {
"jay": 8,
"@timestamp": "2022-12-08T19:09:48+00:00"
}
I want alert to be triggered when field value of jay become 9
Is it possibel and how please help