forked from etcd-io/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 'How to watch keys' under Tutorials section and updated demo pa…
…ge accordingly (etcd-io#518)
- Loading branch information
Showing
2 changed files
with
19 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: How to watch keys | ||
description: Guide to watching etcd keys | ||
--- | ||
|
||
|
||
`watch` to get notified of future changes: | ||
|
||
![06_etcdctl_watch_2016050501](https://storage.googleapis.com/etcd/demo/06_etcdctl_watch_2016050501.gif) | ||
|
||
```shell | ||
etcdctl --endpoints=$ENDPOINTS watch stock1 | ||
etcdctl --endpoints=$ENDPOINTS put stock1 1000 | ||
|
||
etcdctl --endpoints=$ENDPOINTS watch stock --prefix | ||
etcdctl --endpoints=$ENDPOINTS put stock1 10 | ||
etcdctl --endpoints=$ENDPOINTS put stock2 20 | ||
``` | ||
|