aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick
diff options
context:
space:
mode:
authorDanielMartinBuckley <daniel.m.buckley@intel.com>2018-06-27 17:47:33 +0100
committerDanielMartinBuckley <daniel.m.buckley@intel.com>2018-06-27 17:48:16 +0100
commit000bf928bc29bc76b62e7e3052b8685abe05a710 (patch)
tree9c58b63821d0eab4dcab12ac340256ed2a0c698f /yardstick
parentba0397586aa97ee5f6f2adb2b6f31ac23c7bca41 (diff)
Update to Grafana Dashboard for NSB PROX NFVI
JIRA: YARDSTICK-1252 CPU grouping in grafana for better representation Throughput table is difficult to read as the tests run longer the values can overlap Default time in dashboard should be always last 1hour in dashboard (auto refresh can be also checked) Add one column in table with Gbps throughput (Rx Throughput) plus code change in yardstick Boxes are not aligned and big and small, need to be fixed boxes are now aligned, Added Seperate graphe for LINE Rate Change-Id: Ief31777c2e7a18aab4bf21fb6ccc0e93a3bb9178 Signed-off-by: Daniel Martin Buckley <daniel.m.buckley@intel.com>
Diffstat (limited to 'yardstick')
-rw-r--r--yardstick/network_services/traffic_profile/prox_binsearch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/yardstick/network_services/traffic_profile/prox_binsearch.py b/yardstick/network_services/traffic_profile/prox_binsearch.py
index a92839c8d..9457096c8 100644
--- a/yardstick/network_services/traffic_profile/prox_binsearch.py
+++ b/yardstick/network_services/traffic_profile/prox_binsearch.py
@@ -160,6 +160,8 @@ class ProxBinSearchProfile(ProxProfile):
success_samples["Success_can_be_lost"] = int(result.can_be_lost)
success_samples["Success_drop_total"] = int(result.drop_total)
success_samples["Success_RxThroughput"] = samples["RxThroughput"]
+ success_samples["Success_RxThroughput_gbps"] = \
+ (samples["RxThroughput"] / 1000) * ((pkt_size + 20)* 8)
LOG.info(">>>##>>Collect SUCCESS TG KPIs %s %s",
datetime.datetime.now(), success_samples)
self.queue.put(success_samples, True, overall_constants.QUEUE_PUT_TIMEOUT)