作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在检查一个 scala 代码,以了解他们在 20 秒内注入(inject)事务的地方。
/*TPS = Transaction Per Second */
val minTps = Integer.parseInt(System.getProperty("minTps", "1"))
val maxTps = Integer.parseInt(System.getProperty("maxTps", "5"))
var rampUsersDurationInMinutes =Integer.parseInt(System.getProperty("rampUsersDurationInMinutes", "20"))
setUp(scn.inject(
rampUsersPerSec(minTps) to maxTps during (rampUsersDurationInMinutes seconds)).protocols(tcilProtocol))
could you please confirm if I correctly understood rampUsersPerSec?
---- Global Information --------------------------------------------------------
> request count 60 (OK=38 KO=22 )
> min response time 2569 (OK=2569 KO=60080 )
> max response time 61980 (OK=61980 KO=61770 )
> mean response time 42888 (OK=32411 KO=60985 )
> std deviation 20365 (OK=18850 KO=505 )
> response time 50th percentile 51666 (OK=32143 KO=61026 )
> response time 75th percentile 60903 (OK=48508 KO=61371 )
> response time 95th percentile 61775 (OK=61886 KO=61725 )
> response time 99th percentile 61974 (OK=61976 KO=61762 )
> mean requests/sec 0.741 (OK=0.469 KO=0.272 )
---- Response Time Distribution ------------------------------------------------
最佳答案
rampUsersPerSec 是一个开放的工作负载模型注入(inject),您可以在其中指定用户启动场景的速率。 gatling documentation说这个注入(inject)配置文件
Injects users from starting rate to target rate, defined in users per second, during a given duration. Users will be injected at regular intervals
关于scala - Gatling:在几秒钟内了解 rampUsersPerSec(minTPS) 到 maxTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56594584/
我正在检查一个 scala 代码,以了解他们在 20 秒内注入(inject)事务的地方。 /*TPS = Transaction Per Second */ val minTps = Int
我是一名优秀的程序员,十分优秀!