I am with the second part of the manual: Playing with more interesting data.
A Practical Introduction to Elasticsearch
Ready to try Elasticsearch and see results? Copy and paste these requests to get started.
Let’s get all this data into Elasticsearch. Since the body of this request is fairly big (more than 200,000 lines), it is recommended to do this via a tool that allows to load the body of a request from a file - for instance, using curl:
curl -XPOST 'localhost:9200/shakespeare/_bulk?pretty' --data-binary @shakespeare.json
That command is for curl, but... how can I load this entire file into kibana console devtools?
Thank you