ENH update mem stats

This commit is contained in:
Nathan Dwarshuis 2021-07-19 21:14:38 -04:00
parent 79e0ca8dce
commit 9759d07582
2 changed files with 94 additions and 67 deletions

View File

@ -349,12 +349,30 @@ local threshold_indicator = function(threshold)
) )
end end
M.dial = function(x, y, radius, thickness, threshold) M.dial = function(x, y, radius, thickness, threshold, format)
return Dial.build( return {
dial = Dial.build(
F.make_semicircle(x, y, radius, DIAL_THETA0, DIAL_THETA1), F.make_semicircle(x, y, radius, DIAL_THETA0, DIAL_THETA1),
Arc.style(thickness, Theme.INDICATOR_BG), Arc.style(thickness, Theme.INDICATOR_BG),
threshold_indicator(threshold) threshold_indicator(threshold)
) ),
text_ring = M.initTextRing(x, y, radius - thickness / 2 - 2, format, threshold),
}
end
M.dial_set = function(dl, cr, value)
Dial.set(dl.dial, value)
M.text_ring_set(dl.text_ring, cr, value)
end
M.dial_draw_static = function(dl, cr)
Dial.draw_static(dl.dial, cr)
M.text_ring_draw_static(dl.text_ring, cr)
end
M.dial_draw_dynamic = function(dl, cr)
Dial.draw_dynamic(dl.dial, cr)
M.text_ring_draw_dynamic(dl.text_ring, cr)
end end
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -1,4 +1,3 @@
local Dial = require 'Dial'
local Timeseries = require 'Timeseries' local Timeseries = require 'Timeseries'
local Table = require 'Table' local Table = require 'Table'
local Util = require 'Util' local Util = require 'Util'
@ -8,10 +7,12 @@ local Geometry = require 'Geometry'
return function(update_freq) return function(update_freq)
local MODULE_Y = 712 local MODULE_Y = 712
local DIAL_THICKNESS = 8 local DIAL_THICKNESS = 8
local TEXT_Y_OFFSET = 7 local DIAL_RADIUS = 32
local TEXT_LEFT_X_OFFSET = 30 local DIAL_SPACING = 40
local CACHE_Y_OFFSET = 7
local CACHE_X_OFFSET = 50
local TEXT_SPACING = 20 local TEXT_SPACING = 20
local PLOT_SECTION_BREAK = 30 local PLOT_SECTION_BREAK = 22
local PLOT_HEIGHT = 56 local PLOT_HEIGHT = 56
local TABLE_SECTION_BREAK = 20 local TABLE_SECTION_BREAK = 20
local TABLE_HEIGHT = 114 local TABLE_HEIGHT = 114
@ -19,8 +20,8 @@ return function(update_freq)
local MEMINFO_REGEX = '\nMemFree:%s+(%d+).+'.. local MEMINFO_REGEX = '\nMemFree:%s+(%d+).+'..
'\nBuffers:%s+(%d+).+'.. '\nBuffers:%s+(%d+).+'..
'\nCached:%s+(%d+).+'.. '\nCached:%s+(%d+).+'..
'\nSwapTotal:%s+(%d+).+'..
'\nSwapFree:%s+(%d+).+'.. '\nSwapFree:%s+(%d+).+'..
'\nShmem:%s+(%d+).+'..
'\nSReclaimable:%s+(%d+)' '\nSReclaimable:%s+(%d+)'
local __string_match = string.match local __string_match = string.match
@ -38,51 +39,64 @@ return function(update_freq)
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- mem consumption dial -- mem consumption dial
local mem_total_kb = tonumber(Util.read_file('/proc/meminfo', '^MemTotal:%s+(%d+)')) local get_meminfo_field = function(field)
return tonumber(Util.read_file('/proc/meminfo', field..':%s+(%d+)'))
end
local DIAL_RADIUS = 32 local memtotal = get_meminfo_field('MemTotal')
local DIAL_X = Geometry.RIGHT_X + DIAL_RADIUS + DIAL_THICKNESS / 2 local swaptotal = get_meminfo_field('SwapTotal')
local DIAL_Y = header.bottom_y + DIAL_RADIUS + DIAL_THICKNESS / 2
local dial = Common.dial(DIAL_X, DIAL_Y, DIAL_RADIUS, DIAL_THICKNESS, 0.8) local FORMAT_PERCENT = function(x)
local text_ring = Common.initTextRing( return string.format('%.0f%%', x * 100)
DIAL_X, end
DIAL_Y,
DIAL_RADIUS - DIAL_THICKNESS / 2 - 2, local MEM_X = Geometry.RIGHT_X + DIAL_RADIUS + DIAL_THICKNESS / 2
'%.0f%%', local MEM_Y = header.bottom_y + DIAL_RADIUS + DIAL_THICKNESS / 2
80 local DIAL_DIAMETER = DIAL_RADIUS * 2 + DIAL_THICKNESS
local mem = Common.dial(
MEM_X,
MEM_Y,
DIAL_RADIUS,
DIAL_THICKNESS,
0.8,
FORMAT_PERCENT
)
-----------------------------------------------------------------------------
-- swap consumption dial
local SWAP_X = MEM_X + DIAL_DIAMETER + DIAL_SPACING
local swap = Common.dial(
SWAP_X,
MEM_Y,
DIAL_RADIUS,
DIAL_THICKNESS,
0.8,
FORMAT_PERCENT
) )
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- swap/buffers stats -- swap/buffers stats
local LINE_1_Y = header.bottom_y + TEXT_Y_OFFSET local CACHE_Y = header.bottom_y + CACHE_Y_OFFSET
local TEXT_LEFT_X = Geometry.RIGHT_X + DIAL_RADIUS * 2 + TEXT_LEFT_X_OFFSET local CACHE_X = SWAP_X + CACHE_X_OFFSET + DIAL_DIAMETER / 2
local SWAP_BUFFERS_WIDTH = Geometry.SECTION_WIDTH - TEXT_LEFT_X_OFFSET local CACHE_WIDTH = Geometry.RIGHT_X + Geometry.SECTION_WIDTH - CACHE_X
- DIAL_RADIUS * 2
local swap = Common.initTextRowCrit(
TEXT_LEFT_X,
LINE_1_Y,
SWAP_BUFFERS_WIDTH,
'Swap Usage',
'%s%%',
80
)
local cache = Common.initTextRows_formatted( local cache = Common.initTextRows_formatted(
TEXT_LEFT_X, CACHE_X,
LINE_1_Y + TEXT_SPACING, CACHE_Y,
SWAP_BUFFERS_WIDTH, CACHE_WIDTH,
TEXT_SPACING, TEXT_SPACING,
{'Page Cache', 'Buffers', 'Kernel Slab'}, {'Page Cache', 'Buffers', 'Shared', 'Kernel Slab'},
'%.1f%%' '%.1f%%'
) )
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
-- memory consumption plot -- memory consumption plot
local PLOT_Y = PLOT_SECTION_BREAK + header.bottom_y + DIAL_RADIUS * 2 local PLOT_Y = header.bottom_y + PLOT_SECTION_BREAK + DIAL_DIAMETER
local plot = Common.initThemedLabelPlot( local plot = Common.initThemedLabelPlot(
Geometry.RIGHT_X, Geometry.RIGHT_X,
@ -120,33 +134,30 @@ return function(update_freq)
local update = function(cr) local update = function(cr)
local conky = Util.conky local conky = Util.conky
-- see source for the 'free' command (sysinfo.c) for formulas -- see manpage for free command for formulas
local memfree_kb, local memfree,
buffers_kb, buffers,
cached_kb, cached,
swap_total_kb, swapfree,
swap_free_kb, shmem,
slab_reclaimable_kb sreclaimable
= __string_match(Util.read_file('/proc/meminfo'), MEMINFO_REGEX) = __string_match(Util.read_file('/proc/meminfo'), MEMINFO_REGEX)
local used_percent = local used_percent =
(mem_total_kb - (memtotal -
memfree_kb - memfree -
cached_kb - cached -
buffers_kb - buffers -
slab_reclaimable_kb) / mem_total_kb sreclaimable) / memtotal
Dial.set(dial, used_percent) Common.dial_set(mem, cr, used_percent)
Common.text_ring_set(text_ring, cr, used_percent * 100) Common.dial_set(swap, cr, (swaptotal - swapfree) / swaptotal)
Common.text_row_crit_set( Common.text_rows_set(cache, cr, 1, cached / memtotal * 100)
swap, cr, (swap_total_kb - swap_free_kb) / swap_total_kb * 100 Common.text_rows_set(cache, cr, 2, buffers / memtotal * 100)
) Common.text_rows_set(cache, cr, 3, shmem / memtotal * 100)
Common.text_rows_set(cache, cr, 4, sreclaimable / memtotal * 100)
Common.text_rows_set(cache, cr, 1, cached_kb / mem_total_kb * 100)
Common.text_rows_set(cache, cr, 2, buffers_kb / mem_total_kb * 100)
Common.text_rows_set(cache, cr, 3, slab_reclaimable_kb / mem_total_kb * 100)
Timeseries.update(plot, used_percent) Timeseries.update(plot, used_percent)
@ -160,10 +171,9 @@ return function(update_freq)
local draw_static = function(cr) local draw_static = function(cr)
Common.drawHeader(cr, header) Common.drawHeader(cr, header)
Common.text_ring_draw_static(text_ring, cr) Common.dial_draw_static(mem, cr)
Dial.draw_static(dial, cr) Common.dial_draw_static(swap, cr)
Common.text_row_crit_draw_static(swap, cr)
Common.text_rows_draw_static(cache, cr) Common.text_rows_draw_static(cache, cr)
Timeseries.draw_static(plot, cr) Timeseries.draw_static(plot, cr)
@ -173,10 +183,9 @@ return function(update_freq)
local draw_dynamic = function(cr) local draw_dynamic = function(cr)
update(cr) update(cr)
Dial.draw_dynamic(dial, cr) Common.dial_draw_dynamic(mem, cr)
Common.text_ring_draw_dynamic(text_ring, cr) Common.dial_draw_dynamic(swap, cr)
Common.text_row_crit_draw_dynamic(swap, cr)
Common.text_rows_draw_dynamic(cache, cr) Common.text_rows_draw_dynamic(cache, cr)
Timeseries.draw_dynamic(plot, cr) Timeseries.draw_dynamic(plot, cr)