一个脚本中执行多个test,如何监控tps

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

一个脚本中执行多个test,如何监控tps

gongmenglei
实际业务场景中混合场景非常普遍,现在需要在一个脚本中测试多个test,如何观察到每个test 的tps?
Reply | Threaded
Open this post in threaded view
|

Re: 一个脚本中执行多个test,如何监控tps

randall
同问~
Reply | Threaded
Open this post in threaded view
|

Re: 一个脚本中执行多个test,如何监控tps

ziteng
In reply to this post by gongmenglei
测试完成后,可以下载 csv 文件,要自己分析 csv 里面的信息。不同的 test 在文件中会显示详细的 tps 信息。
Reply | Threaded
Open this post in threaded view
|

Re: 一个脚本中执行多个test,如何监控tps

Zheng Lei
In reply to this post by gongmenglei
定义多个test就行了,如:
test1 = Test(1, "xxx")
test2 = Test(2, "xxxx")
test3 = Test(3, "xxx")
test4 = Test(4, "xxxx")

在Runner里面分别写每个test的方法
Reply | Threaded
Open this post in threaded view
|

Re: 一个脚本中执行多个test,如何监控tps

Frank.Wang
能不能详细点?具体代码怎么写?能不能把代码贴出来?