123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package conf
- import (
- "errors"
- "flag"
- "github.com/BurntSushi/toml"
- "go-common/library/conf"
- "go-common/library/log"
- xtime "go-common/library/time"
- )
- func init() {
- flag.StringVar(&confPath, "conf", "", "config file")
- }
- var (
- confPath string
- // Conf conf
- Conf = &Config{}
- client *conf.Client
- )
- // Config config.
- type Config struct {
- Log *log.Config `toml:"log"`
- HBase *HBaseConfig `toml:"hbase"`
- InfluxDB *InfluxDBConfig `toml:"influx_db"`
- Collect *Collect `toml:"collect"`
- BatchWriter *BatchWriter `toml:"batch_writer"`
- Dapper *DapperConfig `toml:"dapper"`
- KafkaCollect *KafkaCollect `toml:"kafka_collect"`
- }
- // DapperConfig .
- type DapperConfig struct {
- RetentionDay int `toml:"retention_day"`
- APIListen string `toml:"api_listen"`
- }
- // HBaseConfig hbase config
- type HBaseConfig struct {
- Namespace string `toml:"namespace"`
- Addrs string `toml:"addrs"`
- RPCQueueSize int `toml:"rpc_queue_size"`
- FlushInterval xtime.Duration `toml:"flush_interval"`
- EffectiveUser string `toml:"effective_user"`
- RegionLookupTimeout xtime.Duration `toml:"region_lookup_timeout"`
- RegionReadTimeout xtime.Duration `toml:"region_read_timeout"`
- }
- // InfluxDBConfig InfluxDBConfig
- type InfluxDBConfig struct {
- Addr string `toml:"addr"`
- Username string `toml:"username"`
- Password string `toml:"password"`
- Database string `toml:"database"`
- }
- // Collect config.
- type Collect struct {
- Network string
- Addr string
- }
- // KafkaCollect .
- type KafkaCollect struct {
- Topic string `toml:"topic"`
- Addrs []string `toml:"addrs"`
- }
- // BatchWriter config
- type BatchWriter struct {
- SummaryWorkers int `toml:"summary_workers"`
- SummaryBulkSize int `toml:"summary_bulk_size"`
- SummaryChanSize int `toml:"summary_chan_size"`
- RawWorkers int `toml:"raw_workers"`
- RawBufSize int `toml:"raw_buf_size"`
- RawChanSize int `toml:"raw_chan_size"`
- FlushInterval xtime.Duration `toml:"flush_interval"`
- }
- // Init config
- func Init() (err error) {
- if confPath != "" {
- return local()
- }
- return remote()
- }
- func local() (err error) {
- _, err = toml.DecodeFile(confPath, &Conf)
- return
- }
- func remote() (err error) {
- if client, err = conf.New(); err != nil {
- return
- }
- if err = load(); err != nil {
- return
- }
- go func() {
- for range client.Event() {
- log.Info("config reload")
- if err := load(); err != nil {
- log.Error("config reload error (%v)", err)
- }
- }
- }()
- return
- }
- func load() (err error) {
- var (
- s string
- ok bool
- tmpConf *Config
- )
- if s, ok = client.Value2("dapper-service.toml"); !ok {
- return errors.New("load config center error")
- }
- if _, err = toml.Decode(s, &tmpConf); err != nil {
- return errors.New("could not decode config")
- }
- *Conf = *tmpConf
- return
- }
|