From 75a79f822d01f5b84eafb6a19436ca30892b6dad Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Mon, 5 Oct 2015 10:12:04 +0100 Subject: [PATCH] ts-logs-capture: Gather /proc/modules Knowing which modules are loaded can be useful. /proc/modules is slightly less human-readable than the output of "lsmod", but also includes the load address, which might plausibly be useful for decoding a stack trace (although I've never used it for that myself) Signed-off-by: Ian Campbell Acked-by: Ian Jackson --- ts-logs-capture | 1 + 1 file changed, 1 insertion(+) diff --git a/ts-logs-capture b/ts-logs-capture index ab6750d..cb0d371 100755 --- a/ts-logs-capture +++ b/ts-logs-capture @@ -202,6 +202,7 @@ sub fetch_logs_host () { 'cat /proc/partitions', 'virsh capabilities', 'cat /proc/self/limits', + 'cat /proc/modules', ) { try_cmd_output_save($cmd); } -- 2.39.5