This is an old revision of the document!
Table of Contents
Elasticsearch
The following assumes that elasticsearch is running on the localhost on port 9200.
General Info about elasticsearch instance
How is elasticsearch doing?
curl -XGET 'localhost:9200/_cat/health?v&pretty' curl -XGET 'localhost:9200/_cat/nodes?v’
What are the indices on this instance?
curl -XGET 'localhost:9200/_cat/indices?v&pretty’
Searching Data
Adding Information
Adding an index
curl -XPUT 'localhost:9200/newindex?pretty’