diff options
author | Steven Barth <steven@midlink.org> | 2008-12-07 19:38:31 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-12-07 19:38:31 +0000 |
commit | 5c61c377c14730ac2de9d022d890f5918b46b001 (patch) | |
tree | b27198603f2a72cc40fdd71dbd06593f4245ca5a /applications/luci-livestats/luasrc/view/livestats/wireless.htm | |
parent | dd74b986a03f10280a1a00299e9159c047bc8f6a (diff) |
Completed LuCI Livestats
Diffstat (limited to 'applications/luci-livestats/luasrc/view/livestats/wireless.htm')
-rw-r--r-- | applications/luci-livestats/luasrc/view/livestats/wireless.htm | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/applications/luci-livestats/luasrc/view/livestats/wireless.htm b/applications/luci-livestats/luasrc/view/livestats/wireless.htm index 2e34df978e..670d9fbf6c 100644 --- a/applications/luci-livestats/luasrc/view/livestats/wireless.htm +++ b/applications/luci-livestats/luasrc/view/livestats/wireless.htm @@ -5,6 +5,7 @@ <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> <script type="text/javascript"> function initGraphs() { @@ -14,12 +15,23 @@ 1500, // Data sources - [ "Noise level", null, "Signal level", null ], + [ function(data) { + return parseFloat(data["Signal level"]) + - parseFloat(data["Noise level"]); + }, "S/N (dBm)"], // Graph layout options - { drawBackground: false, yAxis: [ 0, 150 ], - title: 'Wifi Interface "%s": Signal and Noise', - padding: { left: 40, right: 10, top: 10, bottom: 20 } } + { drawBackground: false, yAxis: [ 0, 50 ], + title: '<%:livestats_wifi%> %s', + padding: { left: 40, right: 10, top: 10, bottom: 20 }, + instanceNames: { + <%- for k,v in pairs(luci.sys.wifi.getiwconfig()) do %> + <%-="%q:%q," % {k, "%s (%s)" % {k, tostring(v.ESSID)}}-%> + <% end %> + "0": "" + }}, + null, + 'live_graphs' ); } |