I've set up a test Amazon Elasticsearch Service, which uses Elastic and Kibana 5.1.
I'm able to insert a test entry via curl:
curl -XPOST "https://mytestservicedomain.amazonaws.com/testindex/testtype" -d "{\"foo\":\"bar\"}"
And verify it was inserted via the Kibana's Dev Tools:
Request:
GET _search
{
"query": {
"match_all": {}
}
}
Response:
{
"_index": "testindex",
"_type": "testtype",
"_id": "AVoQD4Kyv413fK4nN1sg",
"_score": 1,
"_source": {
"foo": "bar"
}
}
But when I go to Discover in Kibana's menu options, I'm not able to get any results. All I get is a couple errors:
Saved "field" parameter is now invalid. Please select a new field.
Discover: "field" is a required parameter
I've found a couple posts (post 1, post 2) on Elastic's forums that seem to suggest there are some compatibility issues with Kibana/Elastic, but I just wanted to see if anybody else was running into it.