First day at ELK stack. I am trying to Index 3 documents into Elasticsearch using Kibana. I got this from Kibana official site training video. I keep getting "type": "json_e_o_f_exception".
I doesn't throw any syntactical errors. But when I click on green button to execute I get that error.
Any suggestions please?
POST /inspections/report/_bulk
{
"index": {
"_id": 1
}
}
{
"business_address": "600 california street",
"business_city": "San francisco",
"business _id": "2228",
"business_location": {
"type": "Point",
"coordinates": [
-122.40,
37.8988
]
},
"business_name": "Tokyo Express",
"business_Postal": "94108",
"Inspection_id": "2228",
"inspection_type":"Routine",
"inspection_score": 96,
"risk_categoy":"Low Risk",
"violation_description": "Unclean nonfood contact",
"violation_id": 01
}
{
"index": {
"_id": 2
}
}
{
"business_address": "600 california street",
"business_city": "San francisco",
"business _id": "2229",
"business_location": {
"type": "Point",
"coordinates": [
-122.40,
37.8988
]
},
"business_name": "bazar Express",
"business_Postal": "94108",
"Inspection_id": "2228",
"inspection_type":"Routine",
"inspection_score": 97,
"risk_categoy":"Low Risk",
"violation_description": "Unclean nonfood ffffff contact",
"violation_id": 02
}