aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2022-01-26 10:06:33 -0500
committerJohn Kacur <jkacur@redhat.com>2022-01-28 09:05:15 -0500
commit491f5a83c5aa4b22ddba712f6df44bf659a905b3 (patch)
tree69e93036d37fa87ad5c368ddc2d84512fc0d123d
parent19f9aa600ae331eb2fadf5f821f539bf24f0dea3 (diff)
downloadrteval-py3.6.tar.gz
rteval: Increase default buckets from 2000 to 3500py3.6
Increase the default buckets from 2000 to 3500 With commit 0292c8963611 we skip statistics reporting if we run out of buckets. Increase the default number of buckets to make this less likely to occur. Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--doc/rteval.82
-rw-r--r--rteval/modules/measurement/cyclictest.py2
-rw-r--r--rteval/rteval.conf2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/rteval.8 b/doc/rteval.8
index fa24509..25dcfcc 100644
--- a/doc/rteval.8
+++ b/doc/rteval.8
@@ -122,7 +122,7 @@ Measurement thread interval in microseconds (default: 100)
Interval increment in microseconds (default: 0)
.TP
.B \-\-cyclictest-buckets=NBUCKETS
-Number of 1 microsecond histogram buckets (default: 2000)
+Number of 1 microsecond histogram buckets (default: 3500)
.TP
.B \-\-hackbench-jobspercore=N
Number of jobs per online-core for hackbench load
diff --git a/rteval/modules/measurement/cyclictest.py b/rteval/modules/measurement/cyclictest.py
index af8adee..5330d14 100644
--- a/rteval/modules/measurement/cyclictest.py
+++ b/rteval/modules/measurement/cyclictest.py
@@ -450,7 +450,7 @@ def ModuleParameters():
"default": 100,
"metavar": "INTV_US"},
"buckets": {"descr": "Histogram width",
- "default": 2000,
+ "default": 3500,
"metavar": "NUM"},
"priority": {"descr": "Run cyclictest with the given priority",
"default": 95,
diff --git a/rteval/rteval.conf b/rteval/rteval.conf
index 7ce6ef0..aa0a53b 100644
--- a/rteval/rteval.conf
+++ b/rteval/rteval.conf
@@ -6,7 +6,7 @@ duration: 60.0
report_interval: 600
[cyclictest]
-buckets: 2000
+buckets: 3500
interval: 100
distance: 0
priority: 95