From 2f274d8026b201967ecb19eee721d0321878e4b4 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Mon, 22 Nov 2021 19:07:56 +0100 Subject: mod_admin_shell: List periodic tasks in module:info --- plugins/mod_admin_shell.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index ac7ad58a..d20101aa 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -441,6 +441,7 @@ function def_env.module:info(name, hosts) ["storage-provider"] = "Storage driver", ["measure"] = "Legacy metrics", ["metric"] = "Metrics", + ["task"] = "Periodic task", }; local item_formatters = { ["feature"] = tostring, @@ -454,6 +455,7 @@ function def_env.module:info(name, hosts) ["metric"] = function(item) return ("%s (%s%s)%s"):format(item.name, suf(item.mf.unit, " "), item.mf.type_, pre(": ", item.mf.description)); end, + ["task"] = function (item) return string.format("%s (%s)", item.name or item.id, item.when); end }; for host in hosts do -- cgit v1.2.3