IIS リソースに含まれている WCAT ツールキットを使用してストレス/負荷テストをセットアップしようとしています。
LogParser を使用して、構成を含む UBR ファイルを処理しました。次のようになります。
[Configuration]
NumClientMachines: 1 # number of distinct client machines to use
NumClientThreads: 100 # number of threads per machine
AsynchronousWait: TRUE # asynchronous wait for think and delay
Duration: 5m # length of experiment (m = minutes, s = seconds)
MaxRecvBuffer: 8192K # suggested maximum received buffer
ThinkTime: 0s # maximum think-time before next request
WarmupTime: 5s # time to warm up before taking statistics
CooldownTime: 6s # time to cool down at the end of the experiment
[Performance]
[Script]
SET RequestHeader = "Accept: */*\r\n"
APP RequestHeader = "Accept-Language: en-us\r\n"
APP RequestHeader = "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705)\r\n"
APP RequestHeader = "Host: %HOST%\r\n"
NEW TRANSACTION
classId = 1
NEW REQUEST HTTP
ResponseStatusCode = 200
Weight = 45117
verb = "GET"
URL = "http://Url1.com"
NEW TRANSACTION
classId = 3
NEW REQUEST HTTP
ResponseStatusCode = 200
Weight = 13662
verb = "GET"
URL = "http://Url1.com/test.aspx"
それは大丈夫に見えますか?
次のコマンドでコントローラーを実行します。wcctl -z StressTest.ubr -a localhost
クライアントは次のように実行されます。wcclient localhost
クライアントが実行されると、次のエラーが発生します。main client thread Connect Attempt 0 Failed. Error = 10061
この世界で WCAT を使用したことのある人はいますか?