2015-05-29 19:50:05 +00:00
|
|
|
package opentsdb
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Enabled bool `toml:"enabled"`
|
|
|
|
BindAddress string `toml:"bind-address"`
|
|
|
|
Database string `toml:"database"`
|
|
|
|
RetentionPolicy string `toml:"retention-policy"`
|
|
|
|
}
|
2015-06-05 20:40:18 +00:00
|
|
|
|
|
|
|
func NewConfig() Config {
|
|
|
|
return Config{}
|
|
|
|
}
|