Include total_runtime in the summary of measurements
This commit is contained in:
parent
8da12a9c07
commit
d02ed117f9
3 changed files with 7 additions and 0 deletions
|
|
@ -33,8 +33,12 @@ func init() {
|
|||
AnomalyCount: 0,
|
||||
DataUsageUp: 0,
|
||||
DataUsageDown: 0,
|
||||
TotalRuntime: 0,
|
||||
}
|
||||
for _, msmt := range measurements {
|
||||
if msmtSummary.TotalRuntime == 0 {
|
||||
msmtSummary.TotalRuntime = msmt.ResultRuntime
|
||||
}
|
||||
// FIXME this logic should be adjusted for test groups that have many
|
||||
// measurements in them
|
||||
if msmtSummary.DataUsageUp == 0 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue