Is it just me or anyone else?
I discovered quite confusing behaviour of DevTools (former Sense) in Kibana 5.*. HTTP method names are case-sensitive there, i.e. the following queries behave differently:
# Works properly
GET test/events/_search
{
"query": { "match": { "device": "pc" } }
}
# Ignores query body and unconditionally returns all documents
get test/events/_search
{
"query": { "match": { "device": "pc" } }
}
I'm not sure if it's a new "feature" or alway was like that, but IMHO looks awkward.