in main.go [121:125]
func printCounter(now time.Time, allReq *uint32, successReq *uint32, errorReq *uint32) {
fmt.Printf("Benchmarking..... time:%s,All request count:%v,success:%v,error:%v\n",
now.Format("2006-01-02 15-04-05.000"), atomic.LoadUint32(allReq),
atomic.LoadUint32(successReq), atomic.LoadUint32(errorReq))
}