[perf] Write UTC dates into performance logs
Instead of writing a local date without a timezone, write a UTC date with a trailing Z.
This commit is contained in:
parent
77fcf68ea3
commit
5b971a66ba
@ -439,7 +439,7 @@ def run_performance_test():
|
||||
# version here for simplicity. Using json.dump(indent=0) doesn't real
|
||||
# improve the readability of the output much.
|
||||
report = {
|
||||
'date': datetime.datetime.now().isoformat(),
|
||||
'date': datetime.datetime.utcnow().isoformat() + 'Z',
|
||||
'events': events,
|
||||
'monitors': monitors,
|
||||
'metrics': metric_summaries,
|
||||
|
Loading…
Reference in New Issue
Block a user