Skip to content

Commit

Permalink
Added warmup and cooldown option for LATTE
Browse files Browse the repository at this point in the history
  • Loading branch information
lgonzalez876 committed Mar 14, 2022
1 parent 2dc578e commit 135273a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DataParser.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ function Parse-LATTE ([string] $FileName, $InnerPivot, $OuterPivot, $InnerPivotK
}
$latency += ,[int]$line
}
$dataEntry.latency = $latency
$dataEntry.latency = $latency[$Warmup..($latency.Count - ($Cooldown + 1))]
$dataEntry.protocol = (($FileName.Split('\'))[-1].Split('.'))[0].ToUpper()
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
10000
10000
10000
10000
10000
10
20
30
40
10
20
30
40
10
20
30
40
10
20
30
40
10
20
30
40
10
20
30
40
10
20
30
40
10000
10000
10000
10000
10000

0 comments on commit 135273a

Please sign in to comment.