How To Create Index In Elasticsearch Using Devtool Of Kibana

How to create Index in Elasticsearch using Devtool of Kibana?

Once the integration of Orchestrator with Elasticsearch and Kibana is done, the next step is to create an Index in Elasticsearch.

Devtool from Kibana can be used to create an index. In order to create the index , run the below script in devtool:

POST default-2018.08\logevent
{
"message":"Hello elasticsearch !!" ,
"@timestamp": "2018-07-03T08:56:56.1219306Z"
}


Screenshot below is for reference.



Note: The index that gets created in Elasticsearch would be default2018.08
Every month there is index created which are represented by YYYY.MM . If required, add the year and month details in front of the index name based on the requirement.