summaryrefslogtreecommitdiffstats
path: root/yardstick/plot/plotter.py
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/plot/plotter.py')
-rw-r--r--yardstick/plot/plotter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/plot/plotter.py b/yardstick/plot/plotter.py
index 0455386b5..91dd521f7 100644
--- a/yardstick/plot/plotter.py
+++ b/yardstick/plot/plotter.py
@@ -125,7 +125,7 @@ class Plotter(object):
def _plot_ping(self, records):
'''ping test result interpretation and visualization on the graph'''
- rtts = [r['benchmark']['data'] for r in records]
+ rtts = [r['benchmark']['data']['rtt'] for r in records]
seqs = [r['benchmark']['sequence'] for r in records]
for i in range(0, len(rtts)):