Hi all,
Kibana version: 4.4.2
When I make a search in Kibana web interface, it doesn't work like excepted for string with hyphen character included.
Example:
Search: "test-10"
Result: test
-10
Search: test-10
Result: test
-10
Search: test\-10
Result: test
-10
Search: "test\-10"
Result: test
-10
As you can see, the hyphen is never catch in the result.
I made a TCPDUMP:
-
Query format with not escape hyphen: @source_host:"test-"
-
Query format with escape hyphen: @source_host:"test\\-"
So it escapes the "" character but not the hyphen character.
Do you know why ? Regarding Apache Lucene documentation, it should be work.
Thanks in advance for your help !
Alex