influxDB timestamps look like this:
2015-01-29T21:55:43.702900257Z
The question is what options should I use for the x-axis
when I generate the graph with C3.js
The error I get:
"Failed to parse x '2015-01-29T21:55:43.702900257Z' to Date object"
Maybe this jsfiddle will help you do some quick tests... I think the problem is with the time format but any other suggestions are welcome:
axis: {
x: {
type: 'timeseries',
tick: {
format: '%Y-%m-%d'
}
}
}