conky-config/drawing/memory.lua

193 lines
5.6 KiB
Lua
Raw Normal View History

2021-07-29 22:37:30 -04:00
local timeseries = require 'timeseries'
2021-08-08 18:19:37 -04:00
local text_table = require 'text_table'
2021-08-08 15:58:53 -04:00
local i_o = require 'i_o'
2021-08-08 15:10:09 -04:00
local pure = require 'pure'
2017-07-19 00:36:15 -04:00
return function(update_freq, config, common, width, point)
2021-07-17 23:45:12 -04:00
local DIAL_THICKNESS = 8
2021-07-19 21:14:38 -04:00
local DIAL_RADIUS = 32
local DIAL_SPACING = 40
local CACHE_Y_OFFSET = 7
local CACHE_X_OFFSET = 50
2021-07-17 23:45:12 -04:00
local TEXT_SPACING = 20
2021-07-19 21:14:38 -04:00
local PLOT_SECTION_BREAK = 22
2021-07-17 23:45:12 -04:00
local PLOT_HEIGHT = 56
local TABLE_SECTION_BREAK = 20
local __string_match = string.match
local __math_floor = math.floor
2021-07-17 23:45:12 -04:00
2022-07-17 19:30:48 -04:00
-----------------------------------------------------------------------------
-- state
local MEMINFO_REGEX = '\nMemFree:%s+(%d+).+'..
'\nBuffers:%s+(%d+).+'..
'\nCached:%s+(%d+).+'..
'\nSwapFree:%s+(%d+).+'..
'\nShmem:%s+(%d+).+'..
'\nSReclaimable:%s+(%d+)'
local get_meminfo_field = function(field)
return tonumber(i_o.read_file('/proc/meminfo', field..':%s+(%d+)'))
end
local mod_state = {
mem = {total = get_meminfo_field('MemTotal')},
swap = {total = get_meminfo_field('SwapTotal')}
}
local read_state = function()
local m = mod_state.mem
-- see manpage for free command for formulas
m.memfree,
m.buffers,
m.cached,
mod_state.swap.free,
m.shmem,
m.sreclaimable
= __string_match(i_o.read_file('/proc/meminfo'), MEMINFO_REGEX)
m.used_percent =
(m.total -
m.memfree -
m.cached -
m.buffers -
m.sreclaimable) / m.total
end
2021-07-17 23:45:12 -04:00
-----------------------------------------------------------------------------
2022-07-14 18:02:47 -04:00
-- mem stats (dial + text)
local mk_stats = function(y)
local MEM_X = point.x + DIAL_RADIUS + DIAL_THICKNESS / 2
2022-07-14 18:02:47 -04:00
local DIAL_DIAMETER = DIAL_RADIUS * 2 + DIAL_THICKNESS
local SWAP_X = MEM_X + DIAL_DIAMETER + DIAL_SPACING
local CACHE_X = SWAP_X + CACHE_X_OFFSET + DIAL_DIAMETER / 2
local CACHE_WIDTH = point.x + width - CACHE_X
2022-07-14 18:02:47 -04:00
local format_percent = function(x)
return string.format('%i%%', x)
end
local mem = common.make_dial(
MEM_X,
y + DIAL_RADIUS,
DIAL_RADIUS,
DIAL_THICKNESS,
80,
format_percent,
__math_floor
)
local swap = common.make_dial(
SWAP_X,
y + DIAL_RADIUS,
DIAL_RADIUS,
DIAL_THICKNESS,
80,
format_percent,
__math_floor
)
local cache = common.make_text_rows_formatted(
CACHE_X,
y + CACHE_Y_OFFSET,
CACHE_WIDTH,
TEXT_SPACING,
{'Page Cache', 'Buffers', 'Shared', 'Kernel Slab'},
'%.1f%%'
)
2022-07-17 19:30:48 -04:00
local update = function()
local m = mod_state.mem
local w = mod_state.swap
2022-07-14 18:02:47 -04:00
common.dial_set(mem, m.used_percent * 100)
common.dial_set(swap, (w.total - w.free) / w.total * 100)
common.text_rows_set(cache, 1, m.cached / m.total * 100)
common.text_rows_set(cache, 2, m.buffers / m.total * 100)
common.text_rows_set(cache, 3, m.shmem / m.total * 100)
common.text_rows_set(cache, 4, m.sreclaimable / m.total * 100)
end
local static = function(cr)
common.dial_draw_static(mem, cr)
common.dial_draw_static(swap, cr)
common.text_rows_draw_static(cache, cr)
end
local dynamic = function(cr)
common.dial_draw_dynamic(mem, cr)
common.dial_draw_dynamic(swap, cr)
common.text_rows_draw_dynamic(cache, cr)
end
2022-07-17 18:54:23 -04:00
return common.mk_acc(width, DIAL_DIAMETER, update, static, dynamic)
2021-07-19 21:14:38 -04:00
end
2021-07-17 23:45:12 -04:00
-----------------------------------------------------------------------------
-- memory consumption plot
2022-07-14 18:02:47 -04:00
local mk_plot = function(y)
local obj = common.make_percent_timeseries(
point.x,
2022-07-14 18:02:47 -04:00
y,
width,
2022-07-14 18:02:47 -04:00
PLOT_HEIGHT,
update_freq
)
2022-07-17 18:54:23 -04:00
return common.mk_acc(
width,
2022-07-14 18:02:47 -04:00
PLOT_HEIGHT,
2022-07-17 19:30:48 -04:00
function() timeseries.update(obj, mod_state.mem.used_percent) end,
2022-07-14 18:02:47 -04:00
pure.partial(timeseries.draw_static, obj),
pure.partial(timeseries.draw_dynamic, obj)
)
end
2021-07-17 23:45:12 -04:00
-----------------------------------------------------------------------------
-- memory top table
2022-07-14 18:02:47 -04:00
local mk_tbl = function(y)
2022-07-18 00:36:44 -04:00
local num_rows = config.table_rows
local table_height = common.table_height(num_rows)
local table_conky = pure.map_n(
2022-07-14 18:02:47 -04:00
function(i)
return {
comm = '${top_mem name '..i..'}',
pid = '${top_mem pid '..i..'}',
mem = '${top_mem mem '..i..'}',
}
end,
2022-07-18 00:36:44 -04:00
num_rows)
2022-07-14 18:02:47 -04:00
local obj = common.make_text_table(
point.x,
2022-07-14 18:02:47 -04:00
y,
width,
2022-07-18 00:36:44 -04:00
table_height,
num_rows,
2022-07-14 18:02:47 -04:00
'Mem (%)'
)
2022-07-17 19:30:48 -04:00
local update = function()
2022-07-18 00:36:44 -04:00
for r = 1, num_rows do
text_table.set(obj, 1, r, i_o.conky(table_conky[r].comm, '(%S+)'))
text_table.set(obj, 2, r, i_o.conky(table_conky[r].pid))
text_table.set(obj, 3, r, i_o.conky(table_conky[r].mem))
2022-07-14 18:02:47 -04:00
end
end
2022-07-17 18:54:23 -04:00
return common.mk_acc(
width,
2022-07-18 00:36:44 -04:00
table_height,
2022-07-14 18:02:47 -04:00
update,
pure.partial(text_table.draw_static, obj),
pure.partial(text_table.draw_dynamic, obj)
)
end
2021-07-17 23:45:12 -04:00
2022-07-14 18:02:47 -04:00
-----------------------------------------------------------------------------
-- main functions
return {
header = 'MEMORY',
point = point,
width = width,
2022-07-17 22:30:38 -04:00
set_state = read_state,
top = {
{mk_stats, config.show_stats, PLOT_SECTION_BREAK},
{mk_plot, config.show_plot, TABLE_SECTION_BREAK},
2022-07-18 00:36:44 -04:00
{mk_tbl, config.table_rows > 0, 0},
2022-07-14 18:02:47 -04:00
}
}
end