From 42c09a95a09d6b627d9dd63a1a4a187907a5b473 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Wed, 27 Apr 2016 11:37:10 -0700 Subject: [PATCH] Documentation: remove other_apis from v3 --- Documentation/other_apis.md | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Documentation/other_apis.md diff --git a/Documentation/other_apis.md b/Documentation/other_apis.md deleted file mode 100644 index 29866a445..000000000 --- a/Documentation/other_apis.md +++ /dev/null @@ -1,28 +0,0 @@ -# Miscellaneous APIs - -* [Getting the etcd version](#getting-the-etcd-version) -* [Checking health of an etcd member node](#checking-health-of-an-etcd-member-node) - -## Getting the etcd version - -The etcd version of a specific instance can be obtained from the `/version` endpoint. - -```sh -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. - -```sh -curl http://10.0.0.10:2379/health -``` - -```json -{"health": "true"} -```