Can't find "Non-zero"

Hello, everyone. I don’t understand why I can’t search for the phrase “Non-zero metrics in the last”. At the same time, if the search query contains the phrase “zero metrics in the last”, I get the desired result.

You can check the mapping and analyzer of your index, and check the generated tokens for that phrase:

POST {your_index}/_analyze
{
"text": "Non-zero metrics in the last",
"field": "your field"
}

The default mapping and analyzer are used. Also, this field is treated as text.

Can you show your query DSL?