conky-config/drawing/readwrite.lua

107 lines
3.2 KiB
Lua
Raw Normal View History

local util = require 'util'
local common = require 'common'
local geometry = require 'geometry'
2021-07-23 01:41:06 -04:00
local func = require 'func'
2017-07-19 00:36:15 -04:00
return function(update_freq)
local PLOT_SEC_BREAK = 20
local PLOT_HEIGHT = 56
local DEVICES = {'sda', 'nvme0n1'}
2017-07-19 00:36:15 -04:00
-- the sector size of any block device in linux is 512 bytes
-- see https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/linux/types.h?id=v4.4-rc6#n121
local BLOCK_SIZE_BYTES = 512
-- fields 3 and 7 (sectors read and written)
local RW_REGEX = '%s+%d+%s+%d+%s+(%d+)%s+%d+%s+%d+%s+%d+%s+(%d+)'
local __tonumber = tonumber
local __string_match = string.match
2017-07-19 00:36:15 -04:00
2021-07-23 01:41:06 -04:00
-- TODO any way to make better lambda functions?
local DEVICE_PATHS = func.map(
function(s) return string.format('/sys/block/%s/stat', s) end,
DEVICES
)
2021-07-19 23:58:58 -04:00
local read_devices = function()
local read_bytes = 0
local write_bytes = 0
for _, path in pairs(DEVICE_PATHS) do
local r, w = __string_match(util.read_file(path), RW_REGEX)
2021-07-19 23:58:58 -04:00
read_bytes = read_bytes + __tonumber(r)
write_bytes = write_bytes + __tonumber(w)
end
return read_bytes * BLOCK_SIZE_BYTES, write_bytes * BLOCK_SIZE_BYTES
end
2021-07-19 23:58:58 -04:00
local init_read_bytes, init_write_bytes = read_devices()
local format_value_function = function(bps)
local unit, value = util.convert_data_val(bps)
return util.precision_round_to_string(value, 3)..' '..unit..'B/s'
end
local make_plot = function(y, label, init)
return common.make_rate_timeseries(
geometry.CENTER_LEFT_X,
y,
geometry.SECTION_WIDTH,
PLOT_HEIGHT,
format_value_function,
common.converted_y_label_format_generator('B'),
PLOT_SEC_BREAK,
label,
2,
2021-07-19 23:58:58 -04:00
update_freq,
init
)
end
-----------------------------------------------------------------------------
2021-07-19 23:58:58 -04:00
-- header
local header = common.make_header(
geometry.CENTER_LEFT_X,
geometry.TOP_Y,
geometry.SECTION_WIDTH,
2021-07-19 23:58:58 -04:00
'INPUT / OUTPUT'
)
2017-07-19 00:36:15 -04:00
-----------------------------------------------------------------------------
2021-07-19 23:58:58 -04:00
-- reads
local reads = make_plot(header.bottom_y, 'Reads', init_read_bytes)
2021-07-19 23:58:58 -04:00
-----------------------------------------------------------------------------
-- writes
local writes = make_plot(
2021-07-19 23:58:58 -04:00
header.bottom_y + PLOT_HEIGHT + PLOT_SEC_BREAK * 2,
'Writes',
init_write_bytes
)
2021-07-19 23:58:58 -04:00
-----------------------------------------------------------------------------
-- main drawing functions
2021-07-26 23:45:54 -04:00
local update = function()
local read_bytes, write_bytes = read_devices()
common.update_rate_timeseries(reads, read_bytes)
common.update_rate_timeseries(writes, write_bytes)
end
local draw_static = function(cr)
common.draw_header(cr, header)
2021-07-30 22:46:20 -04:00
common.tagged_scaled_timeseries_draw_static(reads, cr)
common.tagged_scaled_timeseries_draw_static(writes, cr)
end
local draw_dynamic = function(cr)
2021-07-30 22:46:20 -04:00
common.tagged_scaled_timeseries_draw_dynamic(reads, cr)
common.tagged_scaled_timeseries_draw_dynamic(writes, cr)
end
return {static = draw_static, dynamic = draw_dynamic, update = update}
2017-07-19 00:36:15 -04:00
end