Skip to content

Commit

Permalink
bumped ltt version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahaja committed Sep 20, 2020
1 parent ce591a0 commit e7c4c8a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# ltt-tui
Terminal-UI for ltt
Terminal-UI for ltt: https://github.com/Jahaja/ltt
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module ltt-tui
go 1.15

require (
github.com/Jahaja/ltt v0.1.6
github.com/Jahaja/ltt v0.2.0
github.com/gdamore/tcell v1.3.0
github.com/rivo/tview v0.0.0-20200915114512-42866ecf6ca6
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ github.com/Jahaja/ltt v0.1.5 h1:wff6hW0O/pwr4+6FevdrNa0t+jSsnYRU+dyjfhwniuc=
github.com/Jahaja/ltt v0.1.5/go.mod h1:99YhqOGVMoDsnXOyP8jns2/OwqQCMxCetcsp3yTURH4=
github.com/Jahaja/ltt v0.1.6 h1:2DR+XGzHhEZBLLBoW5HlOnmPtqZvmOBlQ3HqboHtBTg=
github.com/Jahaja/ltt v0.1.6/go.mod h1:99YhqOGVMoDsnXOyP8jns2/OwqQCMxCetcsp3yTURH4=
github.com/Jahaja/ltt v0.2.0 h1:nHHdWqc/cyzG0E0ZSbXFTW9k8D8yR0Ssg5f3TX3Cpx0=
github.com/Jahaja/ltt v0.2.0/go.mod h1:99YhqOGVMoDsnXOyP8jns2/OwqQCMxCetcsp3yTURH4=
github.com/gdamore/encoding v1.0.0 h1:+7OoQ1Bc6eTm5niUzBa0Ctsh6JbMW6Ra+YNuAtDBdko=
github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
github.com/gdamore/tcell v1.3.0 h1:r35w0JBADPZCVQijYebl6YMWWtHRqVEGt7kL2eBADRM=
Expand Down
2 changes: 1 addition & 1 deletion tui/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ func (ui *UIView) Draw() {

ui.StatusText.SetText(fmt.Sprintf(" %d tasks running since %s\n Total: %d, Successful: %d, Failed: %d, Fail rate: %.1f%%\n Users: %d, RPS: %.1f, Avg duration: %.1f ms\n Status: %s",
len(stats.Tasks), stats.StartTime.Format("2006-01-02 15:04:05"), stats.NumTotal, stats.NumSuccessful,
stats.NumFailed, failRate, stats.NumUsers, stats.CurrentRPS, stats.AverageDuration, ui.LoadTest.Status))
stats.NumFailed, failRate, stats.RunningUsers, stats.CurrentRPS, stats.AverageDuration, ui.LoadTest.Status))

ui.Table.Clear()
if ui.TableView == "tasks" {
Expand Down

0 comments on commit e7c4c8a

Please sign in to comment.