mirror of https://github.com/searxng/searxng.git
[mod] metrics: add to pylint and justify indentations
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
65c29081cc
commit
c54bf42cb9
3
Makefile
3
Makefile
|
@ -199,7 +199,8 @@ PYLINT_FILES=\
|
||||||
searx/engines/yahoo_news.py \
|
searx/engines/yahoo_news.py \
|
||||||
searx/engines/apkmirror.py \
|
searx/engines/apkmirror.py \
|
||||||
searx/engines/artic.py \
|
searx/engines/artic.py \
|
||||||
searx_extra/update/update_external_bangs.py
|
searx_extra/update/update_external_bangs.py \
|
||||||
|
searx/metrics/__init__.py
|
||||||
|
|
||||||
test.pylint: pyenvinstall
|
test.pylint: pyenvinstall
|
||||||
$(call cmd,pylint,$(PYLINT_FILES))
|
$(call cmd,pylint,$(PYLINT_FILES))
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
# pylint: disable=missing-module-docstring, missing-function-docstring
|
||||||
|
|
||||||
import typing
|
import typing
|
||||||
import math
|
import math
|
||||||
|
@ -63,7 +64,7 @@ def initialize(engine_names=None):
|
||||||
"""
|
"""
|
||||||
Initialize metrics
|
Initialize metrics
|
||||||
"""
|
"""
|
||||||
global counter_storage, histogram_storage
|
global counter_storage, histogram_storage # pylint: disable=global-statement
|
||||||
|
|
||||||
counter_storage = CounterStorage()
|
counter_storage = CounterStorage()
|
||||||
histogram_storage = HistogramStorage()
|
histogram_storage = HistogramStorage()
|
||||||
|
@ -164,20 +165,21 @@ def get_engines_stats(engine_list):
|
||||||
max_time_total = max(time_total, max_time_total or 0)
|
max_time_total = max(time_total, max_time_total or 0)
|
||||||
max_result_count = max(result_count, max_result_count or 0)
|
max_result_count = max(result_count, max_result_count or 0)
|
||||||
|
|
||||||
list_time.append({'total': round(time_total, 1),
|
list_time.append({
|
||||||
'total_p80': round(time_total_p80, 1),
|
'total': round(time_total, 1),
|
||||||
'total_p95': round(time_total_p95, 1),
|
'total_p80': round(time_total_p80, 1),
|
||||||
'http': round(time_http, 1),
|
'total_p95': round(time_total_p95, 1),
|
||||||
'http_p80': round(time_http_p80, 1),
|
'http': round(time_http, 1),
|
||||||
'http_p95': round(time_http_p95, 1),
|
'http_p80': round(time_http_p80, 1),
|
||||||
'name': engine_name,
|
'http_p95': round(time_http_p95, 1),
|
||||||
'processing': round(time_total - time_http, 1),
|
'name': engine_name,
|
||||||
'processing_p80': round(time_total_p80 - time_http_p80, 1),
|
'processing': round(time_total - time_http, 1),
|
||||||
'processing_p95': round(time_total_p95 - time_http_p95, 1),
|
'processing_p80': round(time_total_p80 - time_http_p80, 1),
|
||||||
'score': score,
|
'processing_p95': round(time_total_p95 - time_http_p95, 1),
|
||||||
'score_per_result': score_per_result,
|
'score': score,
|
||||||
'result_count': result_count,
|
'score_per_result': score_per_result,
|
||||||
})
|
'result_count': result_count,
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'time': list_time,
|
'time': list_time,
|
||||||
|
|
Loading…
Reference in New Issue