Message ID | 20241114205231.252497-2-jkacur@redhat.com |
---|---|
State | New |
Headers | show |
Series | [1/2] rteval: preface idle-set IDLESTATE with --measurement | expand |
diff --git a/rteval-cmd b/rteval-cmd index 4e13d312a24a..9875903c0107 100755 --- a/rteval-cmd +++ b/rteval-cmd @@ -250,7 +250,7 @@ if __name__ == '__main__': if not config.HasSection('measurement'): config.AppendConfig('measurement', { - 'cyclictest' : 'module', + 'timerlat' : 'module', 'sysstat' : 'module'}) # Prepare log levels before loading modules, not to have unwanted log messages diff --git a/rteval.conf b/rteval.conf index 601410b51c28..46a9b1743716 100644 --- a/rteval.conf +++ b/rteval.conf @@ -6,8 +6,8 @@ duration: 60.0 report_interval: 600 [measurement] -cyclictest: module -# timerlat: module +# cyclictest: module +timerlat: module [loads] kcompile: module
This change makes timerlat the default measurement module. You can still run cyclictest by editing the rteval.conf module but if you don't specify, timerlat will run Signed-off-by: John Kacur <jkacur@redhat.com> --- rteval-cmd | 2 +- rteval.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)