我使用Grinder 3.11。我安装了Grinder分析仪"Grinder analyzer . v2"。B19"查看试运行的最终报告。我为20次迭代运行了以下测试:
from net.grinder.script.Grinder import grinder
from net.grinder.script import Test
from net.grinder.plugin.http import HTTPRequest
from java.lang import System
class TestRunner:
def __init__(self):
grinder.statistics.delayReports=True
def __call__(self):
Google()
request = HTTPRequest()
Test(1, "Google").record(request)
def Google():
currentTime = System.currentTimeMillis()
result = request.GET("http://www.google.com")
timeTaken = System.currentTimeMillis()
googlet = timeTaken - currentTime
grinder.logger.info(" vij google time " + str(googlet))
grinder.statistics.forLastTest.success = True
运行测试后,每秒事务图是一个线性图(只记录一个值的不正确的图)。
TPS图对于我运行的任何测试都是相同的。这可能是什么原因呢?为什么没有记录所有迭代的响应时间?
Grinder Analyzer期望得到比您提供的更大的数据集。尝试运行2000次或20000次迭代。否则,正如您所看到的,生成的图形不是很有用。