From 5b129819cc43410341324917a1acb7bd985d73c8 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Wed, 30 Jan 2013 13:36:20 +0000 Subject: [PATCH] modules/admin-full: Add swap info to admin_status page if swap is available, #533 --- libs/sys/luasrc/sys.lua | 5 ++- .../admin-full/luasrc/view/admin_status/index.htm | 38 ++++++++++++++++++++-- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/libs/sys/luasrc/sys.lua b/libs/sys/luasrc/sys.lua index 18622da77..66285249f 100644 --- a/libs/sys/luasrc/sys.lua +++ b/libs/sys/luasrc/sys.lua @@ -176,6 +176,9 @@ function sysinfo() local memfree = tonumber(meminfo:match("MemFree:%s*(%d+)")) local membuffers = tonumber(meminfo:match("Buffers:%s*(%d+)")) local bogomips = tonumber(cpuinfo:match("[Bb]ogo[Mm][Ii][Pp][Ss].-: ([^\n]+)")) or 0 + local swaptotal = tonumber(meminfo:match("SwapTotal:%s*(%d+)")) + local swapcached = tonumber(meminfo:match("SwapCached:%s*(%d+)")) + local swapfree = tonumber(meminfo:match("SwapFree:%s*(%d+)")) local system = cpuinfo:match("system type\t+: ([^\n]+)") or @@ -190,7 +193,7 @@ function sysinfo() nixio.uname().machine or system - return system, model, memtotal, memcached, membuffers, memfree, bogomips + return system, model, memtotal, memcached, membuffers, memfree, bogomips, swaptotal, swapcached, swapfree end --- Retrieves the output of the "logread" command. diff --git a/modules/admin-full/luasrc/view/admin_status/index.htm b/modules/admin-full/luasrc/view/admin_status/index.htm index f8707c05d..bb85517e0 100644 --- a/modules/admin-full/luasrc/view/admin_status/index.htm +++ b/modules/admin-full/luasrc/view/admin_status/index.htm @@ -19,14 +19,17 @@ You may obtain a copy of the License at local has_dhcp = luci.fs.access("/etc/config/dhcp") local has_wifi = luci.fs.stat("/etc/config/wireless") has_wifi = has_wifi and has_wifi.size > 0 + local _, _, memtotal, memcached, membuffers, memfree, _, swaptotal, swapcached, swapfree = luci.sys.sysinfo() + local has_swap + if swaptotal > 0 then + has_swap = 1 + end if luci.http.formvalue("status") == "1" then local ntm = require "luci.model.network".init() local wan = ntm:get_wannet() local wan6 = ntm:get_wan6net() - local _, _, memtotal, memcached, membuffers, memfree = luci.sys.sysinfo() - local conn_count = tonumber(( luci.sys.exec("wc -l /proc/net/nf_conntrack") or luci.sys.exec("wc -l /proc/net/ip_conntrack") or @@ -45,6 +48,9 @@ You may obtain a copy of the License at memcached = memcached, membuffers = membuffers, memfree = memfree, + swaptotal = swaptotal, + swapcached = swapcached, + swapfree = swapfree, connmax = conn_max, conncount = conn_count, leases = luci.tools.status.dhcp_leases(), @@ -494,6 +500,22 @@ You may obtain a copy of the License at info.membuffers + " <%:kB%>", info.memtotal + " <%:kB%>" ); + if (e = document.getElementById('swapcache')) + e.innerHTML = progressbar( + info.swapcached + " <%:kB%>", info.swaptotal + " <%:kB%>" + ); + + if (e = document.getElementById('swaptotal')) + e.innerHTML = progressbar( + (info.swapfree + info.swapcached) + " <%:kB%>", + info.swaptotal + " <%:kB%>" + ); + + if (e = document.getElementById('swapfree')) + e.innerHTML = progressbar( + info.swapfree + " <%:kB%>", info.swaptotal + " <%:kB%>" + ); + if (e = document.getElementById('conns')) e.innerHTML = progressbar(info.conncount, info.connmax); @@ -531,6 +553,18 @@ You may obtain a copy of the License at +<% if has_swap then %> +
+ <%:Swap%> + + + + + +
<%:Total Available%>-
<%:Free%>-
<%:Cached%>-
+
+<% end %> +
<%:Network%> -- 2.11.0