Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilad committed Apr 11, 2018
1 parent 8cdd239 commit c3282d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions output/csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ func createCSVRow(sample interface{}) []string {
*s.Label,
strconv.FormatUint(*s.Timestamp, 10),
strconv.Itoa(*s.ElapsedTime),
strconv.Itoa(*s.ElapsedTime),
strconv.Itoa(*s.Latency),
strconv.Itoa(*s.NA),
}
case jtl.HttpSample:
return []string{
*s.Label,
strconv.FormatUint(*s.Timestamp, 10),
strconv.Itoa(*s.ElapsedTime),
strconv.Itoa(*s.ElapsedTime),
strconv.Itoa(*s.Latency),
strconv.Itoa(*s.NA),
}
default:
Expand Down

0 comments on commit c3282d9

Please sign in to comment.