etcd/Documentation/other_apis.md
Jonathan Boulle c18549261f docs: split out members API into own document
Also changes a few references to settle consistently on "members API"
instead of "member API" or "member APIs".
2015-12-19 15:57:15 +01:00

549 B

Miscellaneous APIs

Getting the etcd version

The etcd version of a specific instance can be obtained from the /version endpoint.

curl -L http://127.0.0.1:2379/version
etcd 2.0.12

Checking health of an etcd member node

etcd provides a /health endpoint to verify the health of a particular member.

curl http://10.0.0.10:2379/health
{"health": "true"}