Skip to content
Snippets Groups Projects
Commit 87767ea9 authored by Björn Vonheiden's avatar Björn Vonheiden
Browse files

add some documentation for threshold

parent 22fcb484
No related branches found
No related tags found
1 merge request!74Make Benchmark Trend Slop Threshold configureable
...@@ -208,6 +208,7 @@ kubectl delete -f theodolite.yaml ...@@ -208,6 +208,7 @@ kubectl delete -f theodolite.yaml
| --prometheus | PROMETHEUS_BASE_URL | Defines where to find the prometheus instance. *Default:* `http://localhost:9090` | | --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` | | --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. | | --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 ### Domain Restriction
......
...@@ -140,7 +140,7 @@ def benchmark_parser(description): ...@@ -140,7 +140,7 @@ def benchmark_parser(description):
type=int, type=int,
metavar='<threshold>', metavar='<threshold>',
default=os.environ.get('THRESHOLD', 2000), 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 return parser
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment