JMeter:批处理后查看结果
JMeter: check result after batch processing
我目前正在尝试测量 TCP 服务器的性能,但遇到以下问题:
服务器接收请求,服务器同步回复tcp客户端。
在第一步之后,数据被处理(某种批处理),并写入 table.
使用 Jmeter,是否可以实现某种探测来检查 table 中条目的创建?
什么“table?
- 如果是 SQL Table, you can use JDBC Request sampler which allows executing arbitrary SQL queries and storing the results into JMeter Variables. See The Real Secret to Building a Database Test Plan With JMeter 文章,了解有关为数据库连接配置 JMeter 的详细信息。
- 如果您获得某种形式的 table 作为响应数据,您可以使用 Response Assertion 来验证服务器响应中是否存在预期数据,并有条件地使采样器失败。
我目前正在尝试测量 TCP 服务器的性能,但遇到以下问题:
服务器接收请求,服务器同步回复tcp客户端。 在第一步之后,数据被处理(某种批处理),并写入 table.
使用 Jmeter,是否可以实现某种探测来检查 table 中条目的创建?
什么“table?
- 如果是 SQL Table, you can use JDBC Request sampler which allows executing arbitrary SQL queries and storing the results into JMeter Variables. See The Real Secret to Building a Database Test Plan With JMeter 文章,了解有关为数据库连接配置 JMeter 的详细信息。
- 如果您获得某种形式的 table 作为响应数据,您可以使用 Response Assertion 来验证服务器响应中是否存在预期数据,并有条件地使采样器失败。