4 ms·
Ha yeah - we opened up a port in iptables for this so we don't have to ssh tunnel in to see stats. Obviously, if you're concerned about exposing numbers, you ca
by acl 13y ago
Ha yeah - we opened up a port in iptables for this so we don't have to ssh tunnel in to see stats. Obviously, if you're concerned about exposing numbers, you can view via an ssh tunnel instead of opening a port.
- cmbaus 13y agoI see you are using SVG to render the charts. What are your thoughts on SVG vs Canvas for these types of apps?
- angersock 13y agoNot these guys, but doing realtime viz of signals. We've switched over to a minimalist canvas renderer--if you don't need interactivity or styling, and instead just "draw me as much as you can as fast as you can, damnit.", we hope it's the way to go.
- cmbaus 13y agoI've been playing around (http://yield.io http://yield.io) with Flot, which uses canvas and rendering speed seems pretty good, but resizing gets a bit wonky when there are multiple canvas elements on a page.
- angersock 13y agoYeah, we started with Flotr2...too many graphs on a page (with thousands of datapoints per graph) brings Chrome to its knees, even with auto margins and whatnot turned off. EDIT: Very clean site! I like your style. :)
- cmbaus 13y ago@angersock That's a good point on the number of points. If I downsampled the yield history to monthly yields, that would probably help the performance.