mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 18:42:33 +02:00
[feat] results: show response times
This commit is contained in:
parent
b09aa7e360
commit
e65edb141d
4 changed files with 50 additions and 24 deletions
|
@ -1,27 +1,34 @@
|
|||
<div id="engines_msg">
|
||||
{% if not results and not answers %}
|
||||
<details class="sidebar-collapsable" open>
|
||||
<summary class="title" id="engines_msg-title">{{ _('Messages from the search engines') }}</summary>
|
||||
{% else %}
|
||||
<details class="sidebar-collapsable">
|
||||
<summary class="title" id="engines_msg-title">{{ _('Response time') }}: {{ max_response_time | round(1) }} {{ _('seconds') }}</summary>
|
||||
{% endif %}
|
||||
<summary class="title" id="engines_msg-title">{{ _('Messages from the search engines') }}</summary>
|
||||
<div class="dialog-error" role="alert">
|
||||
{{ icon_big('warning') }}
|
||||
<div>
|
||||
<p>
|
||||
<strong>{{ _('Error!') }}</strong>
|
||||
{{ _('Engines cannot retrieve results') }}:
|
||||
</p>
|
||||
{%- for engine_name, error_type in unresponsive_engines -%}
|
||||
<p>{{- engine_name }} (
|
||||
<a href="{{ url_for('stats', engine=engine_name|e) }}"
|
||||
title="{{ _('View error logs and submit a bug report') }}">
|
||||
{{- error_type -}}
|
||||
</a>
|
||||
){{- '' -}}
|
||||
</p>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
</div>
|
||||
<table class="engine-stats" id="engines_msg-table">
|
||||
{%- for engine_name, error_type in unresponsive_engines -%}
|
||||
<tr>
|
||||
<td class="engine-name">
|
||||
<a href="{{ url_for('stats', engine=engine_name|e) }}"
|
||||
title="{{ _('View error logs and submit a bug report') }}">
|
||||
{{- engine_name -}}
|
||||
</a>
|
||||
</td>
|
||||
<td class="response-error">{{- error_type -}}</td>
|
||||
</tr>
|
||||
{%- endfor -%}
|
||||
{%- for engine_name, response_time in timings -%}
|
||||
<tr>
|
||||
<td class="engine-name"><a href="{{ url_for('stats', engine=engine_name|e) }}">{{ engine_name }}</a></td>
|
||||
<td class="response-time">
|
||||
<div class="bar-chart-value">{{- response_time | round(1) -}}</div>
|
||||
<div class="bar-chart-graph" aria-labelledby="{{engine_name}}_time" aria-hidden="true">
|
||||
<div class="bar-chart-bar bar{{ (100 * response_time / max_response_time) | round | int }}"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{%- endfor -%}
|
||||
</table>
|
||||
</details>
|
||||
</div>
|
||||
|
|
|
@ -57,14 +57,12 @@
|
|||
{%- include 'simple/elements/suggestions.html' -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- include 'simple/elements/engines_msg.html' -%}
|
||||
|
||||
{%- if method == 'POST' -%}
|
||||
{%- include 'simple/elements/search_url.html' -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if unresponsive_engines -%}
|
||||
{%- include 'simple/elements/engines_msg.html' -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if search_formats -%}
|
||||
{%- include 'simple/elements/apis.html' -%}
|
||||
{%- endif -%}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue