Software /
code /
prosody
Changeset
11991:bef2a59b00d1
mod_admin_shell: List periodic tasks in module:info
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 22 Nov 2021 19:07:56 +0100 |
parents | 11990:6f4790b8deec |
children | 11992:876e1b6d6ae4 |
files | plugins/mod_admin_shell.lua |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_admin_shell.lua Mon Nov 22 14:54:32 2021 +0100 +++ b/plugins/mod_admin_shell.lua Mon Nov 22 19:07:56 2021 +0100 @@ -441,6 +441,7 @@ ["storage-provider"] = "Storage driver", ["measure"] = "Legacy metrics", ["metric"] = "Metrics", + ["task"] = "Periodic task", }; local item_formatters = { ["feature"] = tostring, @@ -454,6 +455,7 @@ ["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