From 1527e656b97e3203043b855bd886508668229c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Sun, 17 Jul 2022 00:23:03 +0200 Subject: [PATCH] Fix outdated docs --- docs/creating-an-execution.md | 2 +- docs/running-benchmarks.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/creating-an-execution.md b/docs/creating-an-execution.md index fbbfb4d33..3a109d903 100644 --- a/docs/creating-an-execution.md +++ b/docs/creating-an-execution.md @@ -56,7 +56,7 @@ An Execution always refers to a Benchmark. For the Execution to run, the Benchma As a Benchmark may define multiple supported load and resource types, an Execution has to pick exactly one of each by its name. Additionally, it defines the set of load values and resource values the benchmark should be executed with. Both these values are represented as integers, which are interpreted in a [Benchmark-specific way](creating-a-benchmark#load-and-resource-types) to configure the SUT and load generator. -Similarly, an Execution can select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`. +Similarly, an Execution must select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`. <!-- TODO: What happpens if slos are not set? --> ## Experimental Setup diff --git a/docs/running-benchmarks.md b/docs/running-benchmarks.md index 9d600a728..5a9ab5350 100644 --- a/docs/running-benchmarks.md +++ b/docs/running-benchmarks.md @@ -68,13 +68,17 @@ spec: resources: resourceType: "Instances" # (5) chose one of the benchmark's resource types resourceValues: [1, 2] # (6) select a set of resource amounts + slos: + - name: "lag trend" + properties: + threshold: 2000 execution: strategy: name: "RestrictionSearch" # (8) chose a search strategy restrictions: ["LowerBound"] # (9) configure the search strategy searchStrategy: "LinearSearch" # (10) configure the search strategy (cont.) duration: 300 # (11) set the experiment duration in seconds - repetitions: # (12) set the number of repetitions + repetitions: 1 # (12) set the number of repetitions loadGenerationDelay: 30 # (13) configure a delay before load generation ``` -- GitLab