Query question on dev-tools?

GET filebeat-*/_search
{
  "query": {
      "bool": {
        "must": [
        {
           "query_string": {
            "analyze_wildcard": true,
             "query": "message:(Exception)"
             }
           },
       {
                  "range": {
                    "@timestamp": {
                      "gte": "now-1d",
                      "lte": "now",
                      "format": "epoch_millis"
                    }
                  }
                }
       ]
     }
   }
}

result

GET filebeat-*/_search
{
  "query": {
      "bool": {
        "must": [
        {
           "query_string": {
            "analyze_wildcard": true,
             "query": "message:(ArrayIndexOutOfBoundsException)"
             }
           },
       {
                  "range": {
                    "@timestamp": {
                      "gte": "now-1d",
                      "lte": "now",
                      "format": "epoch_millis"
                    }
                  }
                }
       ]
     }
   }
}

why ArrayIndexOutOfBoundsException didn't hits?

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