2016-12-22 12 views
0

私はwrkをしようと、これらの結果を得ています:wrk結果のReq/SecとRequests/secの違いは何ですか?

wrk -t8 -c200 -d60s --latency http://www.baidu.com 
Running 1m test @ http://www.baidu.com 
    8 threads and 200 connections 
    Thread Stats Avg  Stdev  Max +/- Stdev 
    Latency 15.19ms 36.58ms 1.49s 97.76% 
    Req/Sec  1.46k 422.00  2.31k 81.41% 
    Latency Distribution 
    50% 9.05ms 
    75% 12.23ms 
    90% 17.17ms 
    99% 227.16ms 
    22621 requests in 1.00m, 331.43MB read 
    Socket errors: connect 0, read 1632838, write 0, timeout 0 
Requests/sec: 376.75 
Transfer/sec:  5.52MB 

は、私は必須/秒と要求/秒の値によって混乱です。彼らの違いは何ですか?

答えて

0

私はそれを理解しました。

Req/Secは、その秒で現在処理中のリクエストの数を表します。

要求数/秒数(処理された要求の数)/(要求を処理するために使用された秒数)。

関連する問題