func ticker()

in main.go [108:119]


func ticker(allReq *uint32, successReq *uint32, errorReq *uint32) {
	go func() {
		t := time.NewTicker(time.Second)
		for {
			select {
			case now := <-t.C:
				printCounter(now, allReq, successReq, errorReq)
			}
		}
		t.Stop()
	}()
}