Browse Source

etcdctl: document "ETCD_WATCH_*"

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 8 years ago
parent
commit
b8a95d7a9b
1 changed files with 14 additions and 0 deletions
  1. 14 0
      etcdctl/README.md

+ 14 - 0
etcdctl/README.md

@@ -395,6 +395,20 @@ Receive events and execute `echo watch event received`:
 # watch event received
 # watch event received
 ```
 ```
 
 
+Watch response is set via `ETCD_WATCH_*` environmental variables:
+
+```bash
+./etcdctl watch foo -- sh -c "env | grep ETCD_WATCH_"
+
+# PUT
+# foo
+# bar
+# ETCD_WATCH_REVISION=11
+# ETCD_WATCH_KEY="foo"
+# ETCD_WATCH_EVENT_TYPE="PUT"
+# ETCD_WATCH_VALUE="bar"
+```
+
 Watch with environmental variables and execute `echo watch event received`:
 Watch with environmental variables and execute `echo watch event received`:
 
 
 ```bash
 ```bash