[VOL-3619] Aggreting stats in the matrix scale job

Change-Id: Ibf74828917d4a1eb1320f9144ebc95ed332a40ee
diff --git a/tests/scale/sizing.py b/tests/scale/sizing.py
index 3cd44ea..f00dbe6 100644
--- a/tests/scale/sizing.py
+++ b/tests/scale/sizing.py
@@ -113,6 +113,9 @@
     csv_writer = csv.writer(csv_file, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL)
 
     # we assume all the containers have the same timestamps
+    # FIXME pods may have different timestamps depending on when the collection started
+    # - find the longest list in containers
+    # - add empty values at the beginning of the other list
     dates = [datetime.fromtimestamp(x[0]) for x in containers[0]["values"]]
     csv_writer.writerow([''] + dates)