summaryrefslogtreecommitdiff
path: root/client/benchmarks/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'client/benchmarks/runner.py')
-rw-r--r--client/benchmarks/runner.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/benchmarks/runner.py b/client/benchmarks/runner.py
index b6f7bd5..a63c4c3 100644
--- a/client/benchmarks/runner.py
+++ b/client/benchmarks/runner.py
@@ -1,6 +1,8 @@
import json
import os
+from time import gmtime, strftime
+
from utils.logging import log
from multiprocessing import Process, Queue
@@ -111,6 +113,7 @@ class BenchmarkRunner(object):
r['postgres-log'] = f.read()
r['meta'] = {'benchmark': config['benchmark'],
+ 'date': strftime("%Y-%m-%d %H:%M:%S.000000+00", gmtime()),
'name': config_name}
os.remove('pg.log')