From 4531a68d62199e28c5272cb76fdcab7943846078 Mon Sep 17 00:00:00 2001 From: Sascha Roloff Date: Thu, 22 May 2025 14:41:20 +0200 Subject: invocation server: add presentation of invocation wall-clock time --- doc/invocations-http-server/templates/critical_path.html | 11 ++++++++++- doc/invocations-http-server/templates/invocation.html | 3 +++ doc/invocations-http-server/templates/invocations.html | 3 +++ 3 files changed, 16 insertions(+), 1 deletion(-) (limited to 'doc/invocations-http-server/templates') diff --git a/doc/invocations-http-server/templates/critical_path.html b/doc/invocations-http-server/templates/critical_path.html index 8d818809..e345b50b 100644 --- a/doc/invocations-http-server/templates/critical_path.html +++ b/doc/invocations-http-server/templates/critical_path.html @@ -11,8 +11,16 @@ Invocations {{invocation | e}}

Overview

{% endblock %} diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 6ccb0a56..6babb751 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -75,6 +75,9 @@ Invocation {{invocation | e}} {% else %}
  • Context: (none)
  • {% endif %} + {% if wall_clock_time %} +
  • Wall-clock time: {{ wall_clock_time | e }}
  • + {% endif %} {% if exit_code != None %}
  • Exit code: {{ exit_code | e }}
  • {% endif %} diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 607b9a7a..b5ef5433 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -72,6 +72,9 @@ Filter by: {% if invocation.target %} {{ invocation.target | e}} {% endif %} + {% if invocation.wall_clock_time %} + {{ invocation.wall_clock_time | e}} + {% endif %} {% if invocation.exit_code != 0 %} {% if invocation.exit_code == 1 %} -- cgit v1.2.3