Node down alert

Hi Community,

I am using ELK cluster version 7.17. I need to get alert if a node goes down for a particular duration like 5 minute. I am using metricbeat to monitor cluster. How can we achieve this.

You can yes, take a look at Kibana alerts | Kibana Guide [8.5] | Elastic, specifically this one.

Node does not mean elastic. If we are monitoring Linux server if the server or system goes down then we should get alert.

In kibana alerting is there any option that we can select any specific index like metricbeat.

Did you look at Alerting | Kibana Guide [8.11] | Elastic?

It does here :wink:

Hi @warkolm

There is no option showing of selecting metricbeat index.

I finded it.

Query:

{

  "query":
  {
      "bool":
      {
        "filter":[
        {
            "term":
            {
                "metricset.name": "uptime"
            }
      },
      {
          "range":
          {
              "lt":
              {
                  "system.uptime.duration.ms": 0
              }
          }
      }
      ]
  }
}
}

Hi @warkolm i created a query , it is checking system.uptime if is it less than 0 it would give result
But i dont understand When number of matches in above pic.

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