log-agent/conf/config.go

22 lines
317 B
Go
Raw Normal View History

2024-08-29 00:42:11 +08:00
package config
type AppConfig struct {
KafkaConf `ini:"kafka"`
2024-09-02 00:26:06 +08:00
EtcdConf `ini:"etcd"`
2024-08-29 00:42:11 +08:00
}
type KafkaConf struct {
Address string `ini:"address"`
}
2024-09-02 00:26:06 +08:00
type EtcdConf struct {
Address string `ini:"address"`
Timeout int `ini:"timeout"`
}
//--- unused ---
2024-08-29 00:42:11 +08:00
type TailLog struct {
FileName string `ini:"filename"`
}