metrics: Add parallel bandwidth limit for qemu

This PR adds the parallel bandwidth limit for qemu for kata metrics.

Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
This commit is contained in:
Gabriela Cervantes 2023-09-18 16:35:36 +00:00
parent af59d4bf4a
commit 9aa8d1c917
2 changed files with 15 additions and 2 deletions

View File

@ -133,7 +133,7 @@ description = "measure container parallel bandwidth using iperf3"
# within (inclusive)
checkvar = ".\"network-iperf3\".Results | .[] | .parallel.Result"
checktype = "mean"
midval = 61176889941.0
midval = 47734838389.0
minpercent = 20.0
maxpercent = 20.0

View File

@ -120,7 +120,20 @@ description = "measure container bandwidth using iperf3"
# within (inclusive)
checkvar = ".\"network-iperf3\".Results | .[] | .bandwidth.Result"
checktype = "mean"
midval = 52644229340.91
midval = 55344417086.81
minpercent = 20.0
maxpercent = 20.0
[[metric]]
name = "network-iperf3"
type = "json"
description = "measure container parallel bandwidth using iperf3"
# Min and Max values to set a 'range' that
# the median of the CSV Results data must fall
# within (inclusive)
checkvar = ".\"network-iperf3\".Results | .[] | .parallel.Result"
checktype = "mean"
midval = 52644229340.0
minpercent = 20.0
maxpercent = 20.0