Can I create Alert considering field value of the index?

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

Hi Vijaykumar,
you can use the elasticsearch query alert for this
below I have added the query here hope it will help you
image

1 Like

Hi pratik , solved thanks keep it up .

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