Need to search for messages containing angle bracket (<)

In Kibana logs, the xml feeds are printing line by line which makes it hard to check the logs. So i would want to search for the log entries having angle bracket to get the xml lines together.
I tried with the below query but its not working.

{
  "query": {
    "wildcard": {
      "log": "<*"
    }
  }
}

Could you please help me with the query.

Thanks in advance.

Try escaping the <, eg \<*?

I tried it but thats also not working

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