From 312908c068dd8c35f19669bde33c371cbe29851c Mon Sep 17 00:00:00 2001 From: Lili Cosic Date: Fri, 21 May 2021 18:52:08 +0200 Subject: [PATCH] tools/benchmark/README.md: Update installation as go get does not work --- tools/benchmark/README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tools/benchmark/README.md b/tools/benchmark/README.md index 4af449d37..e713b11b1 100644 --- a/tools/benchmark/README.md +++ b/tools/benchmark/README.md @@ -2,11 +2,13 @@ `etcd/tools/benchmark` is the official benchmarking tool for etcd clusters. -## Download and install -To get `benchmark` from the `main` branch via `go get`: +## Install + +To install `benchmark` follow these steps. + ```sh -$ go get go.etcd.io/etcd/tools/benchmark -# GOPATH should be set -$ ls $GOPATH/bin -benchmark +$ go get go.etcd.io/etcd/v3/tools/benchmark +$ benchmark --help ``` + +Last command should output of usage of `benchmark`.