X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FVppCounters.py;h=6bd0aea4bf53c32852c64e8a06e16c657d72738b;hp=4f62b600419a88cf9df2e371856c6f6ba36fa038;hb=e6316e28601c8ee9ad0a441518dbb7bfd4b9de14;hpb=8d954d6bee4a0bb25dad8cc0107d074b81abfec9 diff --git a/resources/libraries/python/VppCounters.py b/resources/libraries/python/VppCounters.py index 4f62b60041..6bd0aea4bf 100644 --- a/resources/libraries/python/VppCounters.py +++ b/resources/libraries/python/VppCounters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -112,6 +112,8 @@ class VppCounters: f"stats runtime ({node[u'host']} - {socket}):\n" f"{pformat(runtime_nz)}" ) + # Run also the CLI command, the above sometimes misses some info. + PapiSocketExecutor.run_cli_cmd_on_all_sockets(node, u"show runtime") @staticmethod def vpp_show_runtime_on_all_duts(nodes): @@ -206,7 +208,7 @@ class VppCounters: VppCounters.vpp_clear_hardware(node) @staticmethod - def vpp_clears_errors(node): + def vpp_clear_errors(node): """Run "clear errors" CLI command. :param node: Node to run command on. @@ -217,7 +219,7 @@ class VppCounters: ) @staticmethod - def vpp_clears_errors_on_all_duts(nodes): + def vpp_clear_errors_on_all_duts(nodes): """Clear VPP errors counters on all DUTs. :param nodes: VPP nodes. @@ -225,7 +227,7 @@ class VppCounters: """ for node in nodes.values(): if node[u"type"] == NodeType.DUT: - VppCounters.vpp_clears_errors(node) + VppCounters.vpp_clear_errors(node) @staticmethod def show_vpp_statistics(node):