Show start date for each request in html report

This commit is contained in:
Ashish Reddy 2025-10-03 22:09:27 +05:30 committed by hurl-bot
parent 9f15dd2003
commit 8d6ceca06e
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D
1 changed files with 2 additions and 0 deletions

View File

@ -117,7 +117,9 @@ fn get_call_html(
let url = &call.request.url.to_string().redact(secrets);
let url = format!("<a href=\"{url}\">{url}</a>");
let source = format!("<a href=\"{source}#l{line}\">{filename}:{line}</a>");
let start_date = call.timings.begin_call.to_rfc2822();
let values = vec![
("Start Date", start_date.as_str()),
("Request URL", url.as_str()),
("Request Method", call.request.method.as_str()),
("Version", version.as_str()),