From e92d01cae35040accf0e64390209ab1213b70ea3 Mon Sep 17 00:00:00 2001 From: Alan Lau Date: Mon, 29 Jul 2019 17:36:07 +0800 Subject: [PATCH] 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 c38b2c1130..9aadb7cb8a 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. -- GitLab