-
Notifications
You must be signed in to change notification settings - Fork 68
Description
I am using influxdb 0.12 version and using below setting
{
influxdb: {
host: '127.0.0.1', // InfluxDB host (default 127.0.0.1)
port: 8086, // InfluxDB port (default 8086)
version : 0.12,
database: 'demo', // InfluxDB db instance (required)
//username: 'root', // InfluxDB db username (required)
// password: 'root', // InfluxDB db password (required)
flush: {
enable: true // enable regular flush strategy (default true)
},
proxy: {
enable: false, // enable the proxy strategy (default false)
suffix: 'raw', // metric name suffix (default 'raw')
flushInterval: 1000
}
},
port: 8125, // statsD port
backends: ['./backends/console', 'statsd-influxdb-backend'],
debug: true
//legacyNamespace: false
}
and still getting [influxdb] HTTP Error: 404
What could be problem here ?
Thanks
Varun