mod_admin_shell: Add connection created time

This adds an output format option to show the time that the connection was created.

Ref #1852
This commit is contained in:
aidan 2024-04-03 21:56:03 -07:00
parent 0c03df98fe
commit 5550be6381

View file

@ -867,6 +867,18 @@ available_columns = {
end
end;
};
created = {
title = "Connection Created";
description = "Time when connection was created";
width = #"YYYY MM DD HH:MM:SS";
align = "right";
key = "conn";
mapper = function(conn)
if conn then
return os.date("%F %T", math.floor(conn.created));
end
end;
};
dir = {
title = "Dir";
description = "Direction of server-to-server connection";