diff --git a/execution/README.md b/execution/README.md index a77eecd20e0c30a98ee1fb5af4496d653458e59e..7b42a3d9729b02cd1c3758e8d2d502211f4b299f 100644 --- a/execution/README.md +++ b/execution/README.md @@ -208,6 +208,7 @@ kubectl delete -f theodolite.yaml | --prometheus | PROMETHEUS_BASE_URL | Defines where to find the prometheus instance. *Default:* `http://localhost:9090` | | --path | RESULT_PATH | A directory path for the results. Relative to the Execution folder. *Default:* `results` | | --configurations | CONFIGURATIONS | Defines environment variables for the use cases and, thus, enables further configuration options. | +| --threshold | THRESHOLD | The threshold for the trend slop that the search strategies use to determine that a load could be handled. *Default:* `2000` | ### Domain Restriction diff --git a/execution/lib/cli_parser.py b/execution/lib/cli_parser.py index bda3949f4ff72f50807e750a324ae875b006f0d8..de609bc55e21e9467a2b28168be6e478171cfddd 100644 --- a/execution/lib/cli_parser.py +++ b/execution/lib/cli_parser.py @@ -140,7 +140,7 @@ def benchmark_parser(description): type=int, metavar='<threshold>', default=os.environ.get('THRESHOLD', 2000), - help='The threshold the trend search strategies use to determine that a load could be handled.') + help='The threshold for the trend slop that the search strategies use to determine that a load could be handled') return parser