diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-11-19 12:00:57 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-12-17 14:58:10 +0000 |
commit | 3ff919f8eb9fa7eb98887f029be7f817de7a1303 (patch) | |
tree | d8352bf3d6b51d636d3f7d5adccbe7166134f98c /resources/tools | |
parent | 20083f2e3d4fcd603ecba522e08e445b932cca5f (diff) |
Telemetry: Add more operational data
+ Add both NDR and PDR telemetry capture
+ Speedup sockets
+ Adjust privileges
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Change-Id: Ia6fd5d405e6fb410651d8b705c921653753aea10
Diffstat (limited to 'resources/tools')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 2f126f4c8b..aabb0c5d1b 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -922,7 +922,8 @@ class ExecutionChecker(ResultVisitor): :type test_kw: Keyword :returns: Nothing. """ - if test_kw.name.count(u"Show Runtime Counters On All Duts"): + if test_kw.name.count(u"Show Runtime On All Duts") or + test_kw.name.count(u"Show Runtime Counters On All Duts"): self._lookup_kw_nr += 1 self._show_run_lookup_nr = 0 self._msg_type = u"test-show-runtime" |