mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
0c03df98fe
commit
5550be6381
1 changed files with 12 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue