You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran the following query from Grafana - crashed the influxdb server
SELECT (derivative(value, 1m) / 60.000) FROM collectd."default".interface_rx
WHERE type = 'if_octets' AND type_instance = 'eth0' AND time > now() - 30m AND
time < now() - 1m GROUP BY host
Log output:
[query] 2016/02/11 10:22:15 SELECT (derivative(value, 1m) / 60.000) FROM collectd."default".interface_rx WHERE type = 'if_octets' AND type_instance = 'eth0' AND time > now() - 30m AND time < now() - 1m GROUP BY host
panic: interface conversion: interface is float64, not map[string]interface {}
goroutine 233276 [running]:
github.com/influxdb/influxdb/tsdb.(*limitedRowWriter).processValues(0xc20b1afd40, 0xc20c796800, 0xad, 0x100, 0x0)
/tmp/tmp.NZsW7kxYIE/src/github.com/influxdb/influxdb/tsdb/raw.go:524 +0x1173
github.com/influxdb/influxdb/tsdb.(*limitedRowWriter).Flush(0xc20b1afd40)
/tmp/tmp.NZsW7kxYIE/src/github.com/influxdb/influxdb/tsdb/raw.go:446 +0xd6
github.com/influxdb/influxdb/tsdb.(*RawExecutor).execute(0xc20baba7b0, 0xc2093420c0, 0xc20805ff20)
/tmp/tmp.NZsW7kxYIE/src/github.com/influxdb/influxdb/tsdb/raw.go:154 +0x17e5
created by github.com/influxdb/influxdb/tsdb.(*RawExecutor).Execute
/tmp/tmp.NZsW7kxYIE/src/github.com/influxdb/influxdb/tsdb/raw.go:59 +0x64
The text was updated successfully, but these errors were encountered:
@binarytemple Can you try the same query without the brackets as in:
SELECT derivative(value, 1m) /60.000FROM collectd."default".interface_rx
WHERE type ='if_octets'AND type_instance ='eth0'ANDtime> now() - 30m ANDtime< now() - 1m GROUP BY host
Ran the following query from Grafana - crashed the influxdb server
Log output:
The text was updated successfully, but these errors were encountered: