This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new e92d01c Add etcd config doc. (#3189)
e92d01c is described below
commit e92d01cae35040accf0e64390209ab1213b70ea3
Author: Alan Lau <[email protected]>
AuthorDate: Mon Jul 29 17:36:07 2019 +0800
Add etcd config doc. (#3189)
---
docs/en/setup/backend/dynamic-config.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/docs/en/setup/backend/dynamic-config.md
b/docs/en/setup/backend/dynamic-config.md
index c38b2c1..9aadb7c 100644
--- a/docs/en/setup/backend/dynamic-config.md
+++ b/docs/en/setup/backend/dynamic-config.md
@@ -80,6 +80,19 @@ configuration:
maxRetries: 3 # max number of times to retry
```
+## Dynamic Configuration Etcd Implementation
+
+[Etcd](https://github.com/etcd-io/etcd) is also supported as DCC(Dynamic
Configuration Center), to use it, please configure as follows:
+
+```yaml
+configuration:
+ etcd:
+ period : 60 # Unit seconds, sync period. Default fetch every 60 seconds.
+ group : 'skywalking'
+ serverAddr: localhost:2379
+ clusterName: "default"
+```
+
## 3rd party Configuration Center
We are welcome contributions to implement this module provider to support
popular configuration center,
such as Consul. Submit issue to discuss.