changeset 5322:eb832553d635

mod_audit: Use proportional columns in table output
author Matthew Wild <mwild1@gmail.com>
date Fri, 07 Apr 2023 13:09:51 +0100
parents d02f465e2aff
children 400ffa842576
files mod_audit/mod_audit.lua
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mod_audit/mod_audit.lua	Fri Apr 07 13:09:31 2023 +0100
+++ b/mod_audit/mod_audit.lua	Fri Apr 07 13:09:51 2023 +0100
@@ -151,13 +151,13 @@
 
 	local colspec = {
 		{ title = "Date", key = "when", width = 19, mapper = function (when) return os.date("%Y-%m-%d %R:%S", when); end };
-		{ title = "Source", key = "source", width = 18 };
-		{ title = "Event", key = "event_type", width = 22 };
+		{ title = "Source", key = "source", width = "2p" };
+		{ title = "Event", key = "event_type", width = "2p" };
 	};
 
 	if not arg.global then
 		table.insert(colspec, {
-			title = "User", key = "username", width = 30,
+			title = "User", key = "username", width = "2p",
 			mapper = function (user)
 				if user == "@" then return ""; end
 				if user:sub(-#host-1, -1) == ("@"..host) then
@@ -168,7 +168,7 @@
 
 		if attach_ips then
 			table.insert(colspec, {
-				title = "IP", key = "ip", width = "28";
+				title = "IP", key = "ip", width = "2p";
 			});
 		end
 		if attach_location then