diff options
author | Taseer <taseer94@gmail.com> | 2017-03-22 14:33:12 +0500 |
---|---|---|
committer | Taseer <taseer94@gmail.com> | 2017-03-23 10:05:55 +0500 |
commit | e5d4ac457f815e70afbd55ebbf1924084ec5ec8c (patch) | |
tree | 179f7b30a114f6d11301c593b16b672a8618d9a7 /docs/testing/user | |
parent | 29df737b48ccf31f555d0e4c08a65e14ecb66331 (diff) |
Update CLI docs.
JIRA: QTIP-231
Change-Id: I44bc75239e9ff59a70ec9070092101f021a3a291
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
Diffstat (limited to 'docs/testing/user')
-rw-r--r-- | docs/testing/user/userguide/cli.rst | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/testing/user/userguide/cli.rst b/docs/testing/user/userguide/cli.rst new file mode 100644 index 00000000..e18a36f9 --- /dev/null +++ b/docs/testing/user/userguide/cli.rst @@ -0,0 +1,38 @@ +************** +QTIP CLI Usage +************** + +QTIP consists of a number of benchmarking tools or metrics, grouped under QPI's. QPI's map to the different +components of a NFVI ecosystem, such as compute, network and storage. Depending on the type of application, +a user may group them under plans. + +QTIP CLI provides interface to all of the above the components. A help page provides a list of all the commands +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 +:: + + qtip plan list + +One can also be able to view the details about a specific plan. +:: + + qtip plan show <plan_name> + +where *plan_name* is one of those listed from the previous command. + +To execute a complete plan +:: + + qtip plan run <plan_name> + +Similarly, the same commands can be used for the other two components making up the plans, i.e QPI's and metrics. + +Debug option helps identify the error by providing a detailed traceback. It can be enabled as +:: + + qtip [-d|--debug] plan run <plan_name> |