Skip to content

Commit

Permalink
change timestamp format to not have millis/nanos at all
Browse files Browse the repository at this point in the history
  • Loading branch information
brenol committed Oct 6, 2020
1 parent da09bf2 commit 5fbe795
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui/drawer.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ func (d *drawer) redrawMetrics(ctx context.Context) {
metrics.Rate,
metrics.Throughput,
metrics.Success,
metrics.Earliest,
metrics.Latest,
metrics.End,
metrics.Earliest.Format(time.RFC3339),
metrics.Latest.Format(time.RFC3339),
metrics.End.Format(time.RFC3339),
), text.WriteReplace())

codesText := ""
Expand Down

0 comments on commit 5fbe795

Please sign in to comment.