influxdb/services/opentsdb/config.go

13 lines
266 B
Go
Raw Normal View History

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"`
}
func NewConfig() Config {
return Config{}
}