Merge pull request #58 from mutlusun/master

Calculating swap space using swapinfo on FreeBSD
This commit is contained in:
mutlusun 2018-06-27 23:01:50 +02:00 committed by GitHub
commit a081bf777b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 7 deletions

View File

@ -2,6 +2,7 @@
local tonumber = tonumber local tonumber = tonumber
local setmetatable = setmetatable local setmetatable = setmetatable
local math = { floor = math.floor } local math = { floor = math.floor }
local io = { popen = io.popen }
local helpers = require("vicious.helpers") local helpers = require("vicious.helpers")
-- }}} -- }}}
@ -47,14 +48,27 @@ local function worker(format)
local _swp = { buf = {}, total = nil } local _swp = { buf = {}, total = nil }
if vm_swap_enabled == 1 and vm_swap_total > 0 then if vm_swap_enabled == 1 and vm_swap_total > 0 then
-- Get swap space in bytes -- Initialise variables
_swp.total = vm_swap_total _swp.usep = 0
_swp.buf.free = _swp.total - tonumber(vm_stats.v_swapin) _swp.inuse = 0
-- Rework into megabytes _swp.total = 0
_swp.total = math.floor(_swp.total/1048576) _swp.buf.free = 0
_swp.buf.free = math.floor(_swp.buf.free/1048576)
-- Read output of swapinfo in Mbytes
local f = io.popen("swapinfo -m")
-- Skip first line (table header)
f:read("*line")
-- Read content and sum up
for line in f:lines() do
local ltotal, lused, lfree = string.match(line, "%s+([%d]+)%s+([%d]+)%s+([%d]+)")
-- Add swap space in Mbytes
_swp.total = _swp.total + tonumber(ltotal)
_swp.inuse = _swp.inuse + tonumber(lused)
_swp.buf.free = _swp.buf.free + tonumber(lfree)
end
f:close()
-- Calculate percentage -- Calculate percentage
_swp.inuse = _swp.total - _swp.buf.free
_swp.usep = math.floor(_swp.inuse / _swp.total * 100) _swp.usep = math.floor(_swp.inuse / _swp.total * 100)
else else
_swp.usep = -1 _swp.usep = -1