Fix outputs

This commit is contained in:
Maximilian Schmeller 2022-09-16 16:44:24 +02:00
parent 7d54f07214
commit 4fb32188d4

View file

@ -1384,7 +1384,7 @@
" \"timestamp\": p[0].timestamp,\n", " \"timestamp\": p[0].timestamp,\n",
" \"e2e_latency\": p[0].timestamp - p[-1].timestamp}\n", " \"e2e_latency\": p[0].timestamp - p[-1].timestamp}\n",
" for p in paths]\n", " for p in paths]\n",
" out_df.append(path_records)\n", " out_df = out_df.append(path_records)\n",
" print(\n", " print(\n",
" f\"======== {len(paths)}x: {sum(map(lambda p: p[0].timestamp - p[-1].timestamp, paths)) / len(paths) * 1000:.3f}ms\")\n", " f\"======== {len(paths)}x: {sum(map(lambda p: p[0].timestamp - p[-1].timestamp, paths)) / len(paths) * 1000:.3f}ms\")\n",
" paths_durations = []\n", " paths_durations = []\n",