diff --git a/templates/dashboard/http_functions/logs.html b/templates/dashboard/http_functions/logs.html index 51a59d4..623b908 100644 --- a/templates/dashboard/http_functions/logs.html +++ b/templates/dashboard/http_functions/logs.html @@ -44,6 +44,8 @@ history_url=url_for('http.history', function_id=function_id)) }} {{ invocation.invocation_time.strftime('%Y-%m-%d %H:%M:%S') }} + {{ "%.2f"|format(invocation.execution_time or + 0) }}ms v{{ invocation.version_number }} diff --git a/templates/dashboard/timer_functions/logs.html b/templates/dashboard/timer_functions/logs.html index d07a2da..acddfd4 100644 --- a/templates/dashboard/timer_functions/logs.html +++ b/templates/dashboard/timer_functions/logs.html @@ -12,7 +12,7 @@ cancel_url=url_for('timer.overview'), logs_url=url_for('timer.logs', function_id=function_id), history_url=url_for('timer.history', function_id=function_id)) }} -
+
{{ render_partial('dashboard/analytics.html', invocations=timer_function_invocations) }}
@@ -34,6 +34,8 @@ history_url=url_for('timer.history', function_id=function_id)) }} {{ invocation.invocation_time.strftime('%Y-%m-%d %H:%M:%S') }} + {{ "%.2f"|format(invocation.execution_time or + 0) }}ms v{{ invocation.version_number }}