How to insert data into elasticsearch

后端 未结 7 2077
情深已故
情深已故 2020-12-23 14:47

I am new to Elasticearch, and I have been trying for 2 days to insert some data into Elasticearch. I found on Google that there are many pages to help to create an index (I

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-23 15:04

    I started off using curl, but since have migrated to use kibana. Here is some more information on the ELK stack from elastic.co (E elastic search, K kibana): https://www.elastic.co/elk-stack

    With kibana your POST requests are a bit more simple:

    POST //
    {
        "field": "value",
        "id": 1,
        "account_id": 213,
        "name": "kimchy"
    }
    

提交回复
热议问题