I created an Amazon Elasticsearch test service that uses Elastic and Kibana 5.1.
I can insert a test entry through curl:
curl -XPOST "https://mytestservicedomain.amazonaws.com/testindex/testtype" -d "{\"foo\":\"bar\"}"
And make sure it was inserted using Kibana Dev tools:
Request:
GET _search { "query": { "match_all": {} } }
Answer:
{ "_index": "testindex", "_type": "testtype", "_id": "AVoQD4Kyv413fK4nN1sg", "_score": 1, "_source": { "foo": "bar" } }
But when I go to Discover in the Kibana menu, I can’t get any results. All I get are a few errors:
Saved "field" parameter is now invalid. Please select a new field.Discover: "field" is a required parameter

I found a couple of posts ( post 1 , post 2 ) on the Elastic Forums that seem to suggest Kibana / Elastic compatibility issues, but I just wanted to see if anyone else was working.
source share