summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-03-25 01:03:31 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-03-25 01:03:31 +0000
commit09171785fbef73c810eb4a186a5ed67e2b725a43 (patch)
tree837bf7486f81e8bb011210379362ca5d2d9f02e1 /docs
parent8c325e64ada6fb2cb4377e592fa204170c7d8513 (diff)
parentaf651dce321c7691737ac6df9b256c7fe003aec9 (diff)
Merge "Update CLI docs."
Diffstat (limited to 'docs')
-rw-r--r--docs/testing/user/userguide/cli.rst21
1 files changed, 17 insertions, 4 deletions
diff --git a/docs/testing/user/userguide/cli.rst b/docs/testing/user/userguide/cli.rst
index e18a36f9..19420bd1 100644
--- a/docs/testing/user/userguide/cli.rst
+++ b/docs/testing/user/userguide/cli.rst
@@ -12,13 +12,13 @@ along with a short description.
qtip [-h|--help]
-Typically a complete plan is executed at the
-target environment. QTIP defaults to a number of sample plans. One may be able to list them using
+Typically a complete plan is executed at the target environment. QTIP defaults to a number of sample plans.
+A list of all the available plans can be viewed
::
qtip plan list
-One can also be able to view the details about a specific plan.
+In order to view the details about a specific plan.
::
qtip plan show <plan_name>
@@ -28,10 +28,23 @@ where *plan_name* is one of those listed from the previous command.
To execute a complete plan
::
- qtip plan run <plan_name>
+ qtip plan run <plan_name> -p <path_to_result_directory>
+
+QTIP does not limit result storage at a specific directory. Instead a user may specify his own result storage
+as above. An important thing to remember is to provide absolute path of result directory.
+::
+
+ mkdir result
+ qtip plan run <plan_name> -p $PWD/result
Similarly, the same commands can be used for the other two components making up the plans, i.e QPI's and metrics.
+QTIP also provides the utility to view benchmarking results on the console. One just need to provide to where
+the results are stored. Extending the example above
+::
+
+ qtip report show <metric_name> -p $PWD/result
+
Debug option helps identify the error by providing a detailed traceback. It can be enabled as
::