Cubism.js: time series visualization
11–20 of 33 posts
Re: Cubism.js: time series visualization
#12Re: Cubism.js: time series visualization
#13 TypeError: '[object HTMLDivElement]' is not a function (evaluating 'callback.apply(this, (arguments[0] = this, arguments))')Re: Cubism.js: time series visualization
#14Doesnt work in webkit nightly. TypeError: '[object HTMLDivElement]' is not a function (evaluating 'callback.apply(this, (arguments[0] = this, arguments))')
Re: Cubism.js: time series visualization
#15Doesn't work on android =/
Older Android versions don't support SVG (used to render the axes), but it should work in Ice Cream Sandwich.
Re: Cubism.js: time series visualization
#16Doesnt work in webkit nightly. TypeError: '[object HTMLDivElement]' is not a function (evaluating 'callback.apply(this, (arguments[0] = this, arguments))')
Lots of things might not work in nightly builds. That's why they're nightly. ;) I tried the latest Mac OS X WebKit r115090 built on 24 April 2012, and it worked fine for me. If the latest nightly doesn't work for you, please let me know by filing an issue on GitHub and giving more details about your OS and version so that I can track down the problem. Thanks! https://github.com/square/cubism/issues
Re: Cubism.js: time series visualization
#17Re: Cubism.js: time series visualization
#18never heard of horizon charts before, and found it amazing. http://vis.berkeley.edu/papers/horizon/
Analytics visualizations are great when they're pretty, but if they aren't comprehensible, you've failed. In the vast (>1) user testing I've done with horizon graphs, it just isn't grokkable.
People in general don't want to look stupid, so they aren't going to volunteer a "hey, what the heck am I looking at here?" They'll just assume they aren't smart enough to get it and be quiet.
Re: Cubism.js: time series visualization
#19The full screen demo is really what triggered the question for me. I've got a bunch of servers that we monitor and have found that a single graph that shows load for every server gives me a better indicator for those that are outliers. Perhaps you're just not using this for that purpose.
Would love to hear some of the use cases, are you doing all of your graphing with this?
Re: Cubism.js: time series visualization
#20This is interesting, I do want to ask though why you went with stacked graphs as opposed to overlaid line graphs. This makes sense when comparing disparate data points (Load vs Memory vs HTTP Requests), but are you doing this with similar data points as well? The full screen demo is really what triggered the question for me. I've got a bunch of servers that we monitor and have found that a single graph that shows loa…
Line graphs work well when you only have a few hosts, but start to suffer when you try to plot many hosts simultaneously. Depending on how noisy your metrics are, line graphs are good for showing the envelope, but are less effective at revealing when one or two hosts are behaving oddly; the anomalies get lost in the mess of lines. (It doesn't help that the default colors in Graphite are bad; the host that happens to be assigned bright yellow against a white background becomes much harder to see.)
Small multiples give each host a dedicated row, so you don't have to worry about occlusion or distraction. However, that requires more vertical space, which is why you need horizon graphs or a similar technique to compress them. Scrolling with a vertical rule also helps detect coincident anomalies across metrics.