获得etcd 版本号
可以从/version端点获取特定实例的etcd版本。
curl -L http://127.0.0.1:2379/version
etcd 2.0.12
检查一个etcd成员节点的健康状况
etcd提供了一个/health端点来验证特定成员的运行状况。
curl http://10.0.0.10:2379/health
{"health":true}
参考
后面继续补充
PS: 觉得不错的请点个赞吧!! (ง •̀_•́)ง
本文共 273 字,大约阅读时间需要 1 分钟。
可以从/version端点获取特定实例的etcd版本。
curl -L http://127.0.0.1:2379/version
etcd 2.0.12
etcd提供了一个/health端点来验证特定成员的运行状况。
curl http://10.0.0.10:2379/health
{"health":true}
后面继续补充
PS: 觉得不错的请点个赞吧!! (ง •̀_•́)ง
转载于:https://my.oschina.net/solate/blog/1547850