Jmeter:从 TeardownThread 中的 JSR223 采样器或 BeanShell 采样器访问所有线程组的所有结果
Jmeter: Access all results from all threadGroups from JSR223 Sampler or BeanShell Sampler in TeardownThread
有没有办法在主线程组完成后获取上述采样器中所有请求的信息?也许在 TeardownThread 中?
我想执行一些计算并发送基于有关这些请求的信息的几个请求,并且为每个请求使用采样器来执行它会消耗资源。
没有
选项在:
- 解析 .jtl results file
- 如果您不希望代码在所有采样器
之后运行,请使用JSR23 Listener in the main Thread Group. The Listeners obey JMeter Scoping Rules
- 创建 JMeter Plugin, the most suitable option for your case would be your own implementation of Backend Listener
有没有办法在主线程组完成后获取上述采样器中所有请求的信息?也许在 TeardownThread 中? 我想执行一些计算并发送基于有关这些请求的信息的几个请求,并且为每个请求使用采样器来执行它会消耗资源。
没有
选项在:
- 解析 .jtl results file
- 如果您不希望代码在所有采样器 之后运行,请使用JSR23 Listener in the main Thread Group. The Listeners obey JMeter Scoping Rules
- 创建 JMeter Plugin, the most suitable option for your case would be your own implementation of Backend Listener