How to save index from Kibana Dev Console?

Whenever I'm creating an index from dev console, I'm not being able to find it while selecting an index for discover or visualization.

Give us more information like your requests in the dev tools.

why am I getting this error?
image
Even after making changes,
I am getting an error.
image

First error is a warning. Provide a type is deprecated so you can try this instead :
PUT name/_doc/2
{ ... }

In this case you force the identifier to 2, my advise is to let elasticsearch manage you identifiers when it's possible.

If you want update a document you have to use this:
POST name/_update/2
{
"doc" : {
"name" : "new_name"
}
}

To use an Elasticsearch index in Kibana, you need to create an index pattern.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.