12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package config
- type LogConfig struct {
- Path string
- Level string
- MaxSize int
- MaxBackups int
- MaxAge int
- Stacktrace bool
- }
- type MysqlConfig struct {
- User string
- Password string
- Addr string
- DB string
- Charset string
- MaxIdle int
- MaxConn int
- LogMode bool
- }
- type RedisConfig struct {
- Addrs []string
- Password string
- DB int
- PoolSize int
- MinIdleConns int
- MaxRetries int
- Cluster bool
- }
- type ElasticConfig struct {
- Addrs []string
- Sniff bool
- }
- type ThirdPartNode struct {
- Host string
- AppKey string
- AppSecret string
- }
- type ThirdPartConfig struct {
- PartName ThirdPartNode
- }
- type RPCNode struct {
- ServiceName string
- ServicePort int
- ServiceIp string
- MysqlDb string
- RedisDb int
- LogLevel string
- LogStacktrace bool
- }
- type KeepaliveConfig struct {
- ClientTime int
- ClientTimeout int
- ServerTime int
- ServerTimeout int
- ServerMiniTime int
- }
- type RPCConfig struct {
- Keepalive KeepaliveConfig
- SmartEnterpriseManagement RPCNode
- SmartThirdparty RPCNode
- }
- type InfluxdbConfig struct {
- Addr string
- Username string
- Password string
- }
- type Configure struct {
- // 基础配置
- K8s bool
- RunMode string
- Log LogConfig
- // 按需配置
- Mysql MysqlConfig
- Redis RedisConfig
- Elastic ElasticConfig
- ThirdPart ThirdPartConfig
- Influxdb InfluxdbConfig
- // 所要启用的服务
- Rpc RPCConfig
- }
|