How to change thresholds for failure and warning in the SAP S / 4HANA Cloud SDK Pipeline?

We use the SAP S / 4HANA Cloud SDK in our project and have the configuration below for JMeter tests. However, I would like to change the thresholds for failure and warning. How to adjust these values?

checkJMeter: options: '' testPlan: './performance-tests/JMeter/*' dockerImage: 'famiko/jmeter-base' 
+5
source share
1 answer

Use the setting below to set thresholds.

 checkJMeter: options: '' testPlan: './performance-tests/JMeter/*' dockerImage: 'famiko/jmeter-base' failThreshold : 80 # configurable unstableThreshold: 70 # Should always be less than failThreshold 

The default values ​​for error and warning are 100 and 90, respectively.

+5
source

Source: https://habr.com/ru/post/1273165/


All Articles