diff --git a/frontend/src/performance/components/testPlan/components/PressureConfig.vue b/frontend/src/performance/components/testPlan/components/PressureConfig.vue index 221ef26687..9097797383 100644 --- a/frontend/src/performance/components/testPlan/components/PressureConfig.vue +++ b/frontend/src/performance/components/testPlan/components/PressureConfig.vue @@ -44,6 +44,17 @@ 次增加并发用户 +
+ RPS上限: + + +
@@ -58,6 +69,7 @@ duration: 3, rampUpTime: 12, step: 2, + rpsLimit: 10, } }, created() { @@ -71,7 +83,8 @@ {key: "TargetLevel", value: this.threadNumber}, {key: "RampUp", value: this.rampUpTime}, {key: "Steps", value: this.step}, - {key: "Hold", value: this.duration} + {key: "duration", value: this.duration}, + {key: "rpsLimit", value: this.rpsLimit} ]; } }