From d61c89db3bd122f62c631d6337349291cd16c52d Mon Sep 17 00:00:00 2001 From: lixiaoyong1 Date: Fri, 30 Aug 2024 17:36:00 +0800 Subject: [PATCH] Add io info for report --- kyreport/ky_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 26f766f..76310a4 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -75,4 +75,6 @@ class KyReport: info['mem_info'] = self.build_info(Config.get_output_path() + 'memInfo.txt') if os.path.exists(Config.get_output_path() + 'netInfo.txt'): info['net_info'] = self.build_info(Config.get_output_path() + 'netInfo.txt') + if os.path.exists(Config.get_output_path() + 'diskInfo.txt'): + info['io_info'] = self.build_info(Config.get_output_path() + 'diskInfo.txt') -- Gitee