vicious/load.lua

32 lines
895 B
Lua
Raw Normal View History

2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2009, Adrian C. <anrxc.sysphere.org>
---------------------------------------------------
-- {{{ Grab environment
local tonumber = tonumber
local io = { open = io.open }
local setmetatable = setmetatable
2009-10-05 00:10:47 +02:00
local string = { match = string.match }
-- }}}
-- Load: provides system load averages for the past 1, 5, and 15 minutes
module("vicious.load")
-- {{{ Load widget type
2009-08-07 17:41:10 +02:00
local function worker(format)
local f = io.open('/proc/loadavg')
local line = f:read("*line")
f:close()
2009-10-05 00:10:47 +02:00
local l1, l5, l15 = -- Get load averages for past 1, 5 and 15 minutes
string.match(line, "([%d]*%.[%d]*)%s([%d]*%.[%d]*)%s([%d]*%.[%d]*)")
return {tonumber(l1), tonumber(l5), tonumber(l15)}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })