我想通过POST调用获取Elasticsearch Cluster Health,可以吗?
我知道如何通过GET调用,但是我只能访问POST。
仅通过GET调用即可获取群集的运行状况,因为通过POST调用(至少在行为良好的REST服务中)“读取”数据通常没有任何意义:
要么GET _cat/health(view source)
GET _cat/health
或GET _cluster/health(view source)
GET _cluster/health