diff --git a/metrics_config/config.go b/metrics_config/config.go index 5acffca9a5..2170fe1e09 100644 --- a/metrics_config/config.go +++ b/metrics_config/config.go @@ -22,12 +22,6 @@ type Config struct { EnabledExpensive bool `toml:",omitempty"` HTTP string `toml:",omitempty"` Port int `toml:",omitempty"` - EnableInfluxDB bool `toml:",omitempty"` - InfluxDBEndpoint string `toml:",omitempty"` - InfluxDBDatabase string `toml:",omitempty"` - InfluxDBUsername string `toml:",omitempty"` - InfluxDBPassword string `toml:",omitempty"` - InfluxDBTags string `toml:",omitempty"` } // DefaultConfig is the default config for metrics used in go-quai. @@ -36,10 +30,5 @@ var DefaultConfig = Config{ EnabledExpensive: false, HTTP: "127.0.0.1", Port: 6060, - EnableInfluxDB: false, - InfluxDBEndpoint: "http://localhost:8086", - InfluxDBDatabase: "quai", - InfluxDBUsername: "test", - InfluxDBPassword: "test", - InfluxDBTags: "host=localhost", -} \ No newline at end of file +} +