aboutsummaryrefslogtreecommitdiffstats
path: root/examples/har_extractor.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/har_extractor.py')
-rw-r--r--examples/har_extractor.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/har_extractor.py b/examples/har_extractor.py
index c21f1a8f..d6b50c21 100644
--- a/examples/har_extractor.py
+++ b/examples/har_extractor.py
@@ -4,6 +4,7 @@
"""
import six
import sys
+import pytz
from harparser import HAR
from datetime import datetime
@@ -120,7 +121,7 @@ def response(context, flow):
full_time = sum(v for v in timings.values() if v > -1)
started_date_time = datetime.utcfromtimestamp(
- flow.request.timestamp_start).isoformat()
+ flow.request.timestamp_start).replace(tzinfo=pytz.timezone("UTC")).isoformat()
request_query_string = [{"name": k, "value": v}
for k, v in flow.request.query or {}]
@@ -174,6 +175,7 @@ def response(context, flow):
"startedDateTime": entry['startedDateTime'],
"id": page_id,
"title": flow.request.url,
+ "pageTimings": {}
})
)
context.HARLog.set_page_ref(flow.request.url, page_id)