Skip to content

Commit 1c93750

Browse files
kavehshahediMatthewKhouzam
authored andcommitted
Update readme for get virtual table, Fix typo
1 parent 119ad0b commit 1c93750

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ usage: tsp_cli_client [-h] [--ip IP] [--port PORT]
6666
[--list-experiment UUID] [--list-experiments]
6767
[--delete-experiment UUID] [--list-outputs UUID]
6868
[--list-output OUTPUT_ID] [--get-tree OUTPUT_ID]
69+
[--get-virtual-table-columns OUTPUT_ID]
70+
[--get-virtual-table-lines OUTPUT_ID]
71+
[--table-line-index INDEX] [--table-line-count COUNT]
72+
[--table-times [TIMES ...]] [--table-column-ids [IDs ...]]
73+
[--table-search-direction DIRECTION]
74+
[--table-search-expression COLUMN_ID EXPRESSION]
6975
[--get-timegraph-tree OUTPUT_ID]
7076
[--get-xy-tree OUTPUT_ID] [--get-xy OUTPUT_ID]
7177
[--items [ITEMS ...]] [--time-range START END NUM_TIMES]
@@ -106,6 +112,22 @@ optional arguments:
106112
--list-output OUTPUT_ID
107113
Get details on the given output of a trace
108114
--get-tree OUTPUT_ID Get the tree of an output of type DATA_TREE
115+
--get-virtual-table-columns OUTPUT_ID
116+
Get the columns of an output of type DATA_TREE
117+
--get-virtual-table-lines OUTPUT_ID
118+
Get the tree lines of an output of type DATA_TREE
119+
--table-line-index TABLE_LINE_INDEX
120+
The index of the table line to start fetching
121+
--table-line-count TABLE_LINE_COUNT
122+
The number of table lines to fetch
123+
--table-times [TABLE_TIMES ...]
124+
The list of times to fetch from table
125+
--table-column-ids [TABLE_COLUMN_IDS ...]
126+
The list of column ids to fetch
127+
--table-search-direction TABLE_LINE_SEARCH_DIRECTION
128+
The direction to search for the table lines
129+
--table-search-expression COLUMN_ID EXPRESSION
130+
The columns expression to search for the table lines
109131
--get-timegraph-tree OUTPUT_ID
110132
Get the tree of an output of type TIME_GRAPH
111133
--get-xy-tree OUTPUT_ID
@@ -153,6 +175,8 @@ Examples:
153175
./tsp_cli_client --delete-experiment UUID [--do-delete-traces]
154176
./tsp_cli_client --list-outputs UUID
155177
./tsp_cli_client --get-tree OUTPUT_ID --uuid UUID
178+
./tsp_cli_client --get-virtual-table-columns OUTPUT_ID --uuid UUID
179+
./tsp_cli_client --get-virtual-table-lines --table-line-index INDEX --table-line-count COUNT --table-column-ids IDs --table-search-direction DIRECTION --table-search-expression COLUMN_ID EXPRESSION
156180
./tsp_cli_client --get-timegraph-tree OUTPUT_ID --uuid UUID
157181
./tsp_cli_client --get-xy-tree OUTPUT_ID --uuid UUID
158182
./tsp_cli_client --get-xy OUTPUT_ID --uuid UUID --items ITEMS --time-range START END NUM_TIMES

tsp/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from tsp.model_type import ModelType
2828
from tsp.output_descriptor import OutputDescriptor
2929
from tsp.entry_model import EntryModel
30-
from tsp.virtual_tabel_header_model import VirtualTableHeaderModel
30+
from tsp.virtual_table_header_model import VirtualTableHeaderModel
3131
from tsp.xy_model import XYModel
3232
from tsp.virtual_table_model import VirtualTableModel
3333

0 commit comments

Comments
 (0)