diff options
Diffstat (limited to 'applications/luci-livestats/luasrc/view/livestats/traffic.htm')
-rw-r--r-- | applications/luci-livestats/luasrc/view/livestats/traffic.htm | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/applications/luci-livestats/luasrc/view/livestats/traffic.htm b/applications/luci-livestats/luasrc/view/livestats/traffic.htm deleted file mode 100644 index 420ceb9054..0000000000 --- a/applications/luci-livestats/luasrc/view/livestats/traffic.htm +++ /dev/null @@ -1,66 +0,0 @@ -<%+header%> - -<!--[if IE]><script type="text/javascript" src="<%=resource%>/livestats/ExCanvas.js"></script><![endif]--> -<script type="text/javascript" src="<%=resource%>/livestats/MochiKit.js"></script> -<script type="text/javascript" src="<%=resource%>/livestats/JsonRpc.js"></script> -<script type="text/javascript" src="<%=resource%>/livestats/PlotKit.js"></script> -<script type="text/javascript" src="<%=resource%>/livestats/GraphRPC.js"></script> -<script type="text/javascript" src="<%=resource%>/livestats/Legend.js"></script> - -<% - local interfaces = { } - local ifnames = {} - local uci = luci.model.uci.cursor_state() - - uci:foreach("network", "interface", - function(s) - if s.ifname ~= "lo" then - table.insert( interfaces, - "'" .. ( s.ifname or s['.name'] ) .. "'" - ) - ifnames[s.ifname or s['.name']] = s['.name'] - end - end - ) --%> - -<script type="text/javascript"> - function initGraphs() { - var rpc = new GraphRPC( - document.getElementById('live_graphs'), - '<%=luci.dispatcher.build_url('rpc', 'sys')%>', 'net.deviceinfo', - 2000, - - // Data sources - [ "0", "<%:incoming%> (kiB/s)", "8", "<%:outgoing%> (kiB/s)" ], - - // Graph layout options - { - shouldFill: false, - drawBackground: false, - strokeColor: null, - title: '<%:Traffic on%> %s', - strokeWidth: 2.5, height: 140, - padding: { left: 70, right: 10, top: 10, bottom: 20 }, - instances: [ <%=table.concat(interfaces, ", ") %> ], - instanceNames: { - <%- for iface, network in pairs(ifnames) do %> - <%-="%q:%q," % {iface, network}-%> - <% end %> - "0": "" - }}, - - // transform function - function (cur, last) { - return (cur - last) / 2048; - }, - 'live_graphs' - ); - } - - MochiKit.DOM.addLoadEvent(initGraphs); -</script> - -<div id="live_graphs"></div> - -<%+footer%> |