我有集群,我想知道其中的所有索引和类型的名称。我用Sense。
curl -XGET 'http://localhost:9200/_cat/indices?v'
将为您提供所有索引。
curl -XGET 'http://localhost:9200/_mapping?pretty=true'
将为您提供这些索引中的文档类型及其映射。