Skip to content

Commit

Permalink
metrics: Update the expected midval for CI jobs using virtio-fs
Browse files Browse the repository at this point in the history
Disabling the DAX option of `virtio-fsd` has direct impact to the memory
foot-print and I/O performance. We need to adjust the expected `midval`
for our metrics CI jobs on `cloud-hypervisor` and `qemu with virtiofs`.

Depends-on: github.com/kata-containers/runtime#2997

Fixes: kata-containers#2923

Signed-off-by: Bo Chen <[email protected]>
  • Loading branch information
likebreath committed Oct 6, 2020
1 parent dbd2a1e commit 2aa33de
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ description = "measure container average footprint"
# within (inclusive)
checkvar = ".\"memory-footprint\".Results | .[] | .average.Result"
checktype = "mean"
midval = 283923.70
minpercent = 25.0
midval = 272586.75
minpercent = 5.0
maxpercent = 5.0

[[metric]]
Expand All @@ -42,8 +42,8 @@ description = "measure container average footprint with KSM"
# within (inclusive)
checkvar = ".\"memory-footprint-ksm\".Results | .[] | .average.Result"
checktype = "mean"
midval = 283939.43
minpercent = 25.0
midval = 272546.74
minpercent = 5.0
maxpercent = 5.0

[[metric]]
Expand All @@ -55,9 +55,9 @@ description = "measure container average of blogbench write"
# within (inclusive)
checkvar = ".\"blogbench\".Results | .[] | .write.Result"
checktype = "mean"
midval = 3927.30
minpercent = 20.0
maxpercent = 20.0
midval = 1161.25
minpercent = 10.0
maxpercent = 10.0

[[metric]]
name = "blogbench"
Expand All @@ -68,6 +68,6 @@ description = "measure container average of blogbench read"
# within (inclusive)
checkvar = ".\"blogbench\".Results | .[] | .read.Result"
checktype = "mean"
midval = 11488.28
minpercent = 20.0
maxpercent = 20.0
midval = 48860.75
minpercent = 10.0
maxpercent = 10.0
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ description = "measure container average footprint"
# within (inclusive)
checkvar = ".\"memory-footprint\".Results | .[] | .average.Result"
checktype = "mean"
midval = 146498.42
midval = 136691.59
minpercent = 5.0
maxpercent = 5.0

Expand All @@ -42,7 +42,7 @@ description = "measure container average footprint with KSM"
# within (inclusive)
checkvar = ".\"memory-footprint-ksm\".Results | .[] | .average.Result"
checktype = "mean"
midval = 144151.64
midval = 134371.09
minpercent = 5.0
maxpercent = 5.0

Expand Down

0 comments on commit 2aa33de

Please sign in to comment.