imbajin commented on code in PR #414: URL: https://github.com/apache/incubator-hugegraph-doc/pull/414#discussion_r2250846254
########## content/cn/docs/quickstart/hugegraph/hugegraph-hstore.md: ########## @@ -201,5 +201,10 @@ curl http://localhost:8520/actuator/health 此外,可以通过 PD 的 API 查看集群中的 Store 节点状态: ```bash -curl http://localhost:8620/pd/api/v1/stores +curl http://localhost:8620/v1/stores ``` + +如果Store配置成功,上述接口的响应中应该包含当前节点的状态信息,状态为Up表示节点正常运行,这里只展示了一个节点配置成功的响应,如果三个节点都配置成功并正在运行,响应中`storeId`列表应该包含三个id,并且`stateCountMap`中`Up`、`numOfService`、`numOfNormalService`三个字段应该为3。 +```JSON +{"message":"OK","data":{"stores":[{"storeId":8319292642220586694,"address":"127.0.0.1:8500","raftAddress":"127.0.0.1:8510","version":"","state":"Up","deployPath":"/Users/{your_user_name}/hugegraph/apache-hugegraph-incubating-1.5.0/apache-hugegraph-store-incubating-1.5.0/lib/hg-store-node-1.5.0.jar","dataPath":"./storage","startTimeStamp":1754027127969,"registedTimeStamp":1754027127969,"lastHeartBeat":1754027909444,"capacity":494384795648,"available":346535829504,"partitionCount":0,"graphSize":0,"keyCount":0,"leaderCount":0,"serviceName":"127.0.0.1:8500-store","serviceVersion":"","serviceCreatedTimeStamp":1754027127000,"partitions":[]}],"stateCountMap":{"Up":1},"numOfService":1,"numOfNormalService":1},"status":0} Review Comment: format it for user friendly -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@hugegraph.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@hugegraph.apache.org For additional commands, e-mail: issues-h...@hugegraph.apache.org