micro/config/source/consul
magodo 92b998c3ab consul config source support 1st-level array
Check whetehr the 1st level encoded json is array or not, to
support 1st level array in consul config.

During debug, i suspected the incapability of arrray is caused by
json reader, so i added test for array. I think it makes no harm
to also check that in.
2019-06-21 00:25:39 +08:00
..
consul.go prefix in consul api starts with no leading slash 2019-06-19 14:42:09 +08:00
options.go add config 2019-05-30 23:11:13 +01:00
README.md prefix in consul api starts with no leading slash 2019-06-19 14:42:09 +08:00
util.go consul config source support 1st-level array 2019-06-21 00:25:39 +08:00
watcher.go add config 2019-05-30 23:11:13 +01:00

Consul Source

The consul source reads config from consul key/values

Consul Format

The consul source expects keys under the default prefix micro/config

Values are expected to be json

// set database
consul kv put micro/config/database '{"address": "10.0.0.1", "port": 3306}'
// set cache
consul kv put micro/config/cache '{"address": "10.0.0.2", "port": 6379}'

Keys are split on / so access becomes

conf.Get("micro", "config", "database")

New Source

Specify source with data

consulSource := consul.NewSource(
	// optionally specify consul address; default to localhost:8500
	consul.WithAddress("10.0.0.10:8500"),
	// optionally specify prefix; defaults to micro/config
	consul.WithPrefix("my/prefix"),
  // optionally strip the provided prefix from the keys, defaults to false
  consul.StripPrefix(true),
)

Load Source

Load the source into config

// Create new config
conf := config.NewConfig()

// Load file source
conf.Load(consulSource)