Watches if Message Contains Text - Please Help

Hi I will like to know if it is possible to create an alert based on a number (count ) of text in a message.

Example let say I receive 5 messages or more in one hour that contains the word “failed”.

Can create an alert that will check every hour if this conditions occurred.

@Mmatos

Yes, this is a perfect example for using Blocks in Watches.

  1. You would start by setting the threshold (in your case: 5) using constants Block as follows:
{
  "threshold": 5
}

Example:
Screenshot 2021-08-13 at 11.09.01

  1. Then a search block that looks something like below:
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "message": "error"
          }
        },
        {
          "range": {
            "timestamp": {
              "gte": "now-1h"
            }
          }
        }
      ]
    }
  }
}

Selecting the relevant index (indices):

  1. Then create the condition block:
data.mysearch.hits.total.value > data.constants.threshold

see example below:
Screenshot 2021-08-13 at 11.06.45

  1. And finally create the alert needed (email, Slack, webhook etc)

Hope this helps

Hi SirHusky, thanks for the help. I tried with but is not working. if I run the query there are not hits. probably I am doing something wrong.


The message that I need to query is inside this field panw.panos.description
image

is there a way to limit the search to that field only. also do I need to query the complete message or can I query for a part of it only. for example “Failed”.

Please advice, thanks

@Mmatos

In the above you are querying “message” but that is not where the actual “failed” string is located. It should be searching in panw.panos.description.

Regarding the search, yes, that is already being searched, so any string in panw.panos.description that include “failed” will be considered a hit.

If the above is not working can you provide example of the data you get from running a basic query on that index:

GET <index_name>/_search?pretty

you can DM me the result and redact any sensitive information.