From ceb22313fc8c5afc8eb4b6264e1311bc44b24503 Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Mon, 18 Dec 2023 18:14:13 +0000 Subject: [PATCH] Update installing-benchmark.md (#5908) fixed typo in opensearch-benchmark command Signed-off-by: Jason Evans Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> --- _benchmark/user-guide/installing-benchmark.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_benchmark/user-guide/installing-benchmark.md b/_benchmark/user-guide/installing-benchmark.md index 896a7990..8c874abf 100644 --- a/_benchmark/user-guide/installing-benchmark.md +++ b/_benchmark/user-guide/installing-benchmark.md @@ -145,7 +145,7 @@ Use the `-v` option to specify a local directory to mount and a directory in the The following example command creates a volume in a user's home directory, mounts the volume to the OpenSearch Benchmark container at `/opensearch-benchmark/.benchmark`, and then runs a test benchmark using the geonames workload. Some client options are also specified: ```bash -docker run -v $HOME/benchmarks:/opensearch-benchmark/.benchmark opensearchproject/opensearch-benchmark execute_test --target-hosts https://198.51.100.25:9200 --pipeline benchmark-only --workload geonames --client-options basic_auth_user:admin,basic_auth_password:admin,verify_certs:false --test-mode +docker run -v $HOME/benchmarks:/opensearch-benchmark/.benchmark opensearchproject/opensearch-benchmark execute-test --target-hosts https://198.51.100.25:9200 --pipeline benchmark-only --workload geonames --client-options basic_auth_user:admin,basic_auth_password:admin,verify_certs:false --test-mode ``` {% include copy.html %}