查看es库中的所有的索引:
GET _cat/indices
# 查询索引中的所有数据
GET physical_examination/_search
{
"query": {
"match_all": {}
}
}