Did elasticsearch allows only to store data in json format? or is to possible to pass plain text to store in elasticsearch?
You need to send documents as JSON. Like:
DELETE /index
POST /index/_doc
{
"content": "All the text you want to index here"
}
You can add more fields if you want.