summaryrefslogtreecommitdiff
path: root/searx/metrics
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-04-22 17:47:53 +0200
committerAlexandre Flament <alex@al-f.net>2021-04-24 06:58:49 +0200
commit09e7ecdce22733be82bb141355c646ddec538714 (patch)
tree03d401cbd20e41cc81e88a03e03b2a647149df61 /searx/metrics
parentc54bf42cb9699501ccbd54a2df0d7fa73be8dcdb (diff)
[mod] /stats : add reliability column and sort by column links
Diffstat (limited to 'searx/metrics')
-rw-r--r--searx/metrics/__init__.py79
1 files changed, 52 insertions, 27 deletions
diff --git a/searx/metrics/__init__.py b/searx/metrics/__init__.py
index 9648e621..5665ca63 100644
--- a/searx/metrics/__init__.py
+++ b/searx/metrics/__init__.py
@@ -97,12 +97,12 @@ def initialize(engine_names=None):
histogram_storage.configure(histogram_width, histogram_size, 'engine', engine_name, 'time', 'total')
-def get_engine_errors(engline_list):
+def get_engine_errors(engline_name_list):
result = {}
engine_names = list(errors_per_engines.keys())
engine_names.sort()
for engine_name in engine_names:
- if engine_name not in engline_list:
+ if engine_name not in engline_name_list:
continue
error_stats = errors_per_engines[engine_name]
@@ -126,61 +126,86 @@ def get_engine_errors(engline_list):
return result
-def to_percentage(stats, maxvalue):
- for engine_stat in stats:
- if maxvalue:
- engine_stat['percentage'] = int(engine_stat['avg'] / maxvalue * 100)
+def get_reliabilities(engline_name_list, checker_results):
+ reliabilities = {}
+
+ engine_errors = get_engine_errors(engline_name_list)
+
+ for engine_name in engline_name_list:
+ checker_result = checker_results.get(engine_name, {})
+ checker_success = checker_result.get('success', True)
+ errors = engine_errors.get(engine_name) or []
+ if counter('engine', engine_name, 'search', 'count', 'sent') == 0:
+ # no request
+ reliablity = None
+ elif checker_success and not errors:
+ reliablity = 100
+ elif 'simple' in checker_result.get('errors', {}):
+ # the basic (simple) test doesn't work: the engine is broken accoding to the checker
+ # even if there is no exception
+ reliablity = 0
else:
- engine_stat['percentage'] = 0
- return stats
+ reliablity = 100 - sum([error['percentage'] for error in errors if not error.get('secondary')])
+ reliabilities[engine_name] = {
+ 'reliablity': reliablity,
+ 'errors': errors,
+ 'checker': checker_results.get(engine_name, {}).get('errors', {}).keys(),
+ }
+ return reliabilities
-def get_engines_stats(engine_list):
+
+def round_or_none(number, digits):
+ return round(number, digits) if number else number
+
+
+def get_engines_stats(engine_name_list):
assert counter_storage is not None
assert histogram_storage is not None
list_time = []
max_time_total = max_result_count = None # noqa
- for engine_name in engine_list:
- successful_count = counter('engine', engine_name, 'search', 'count', 'successful')
- if successful_count == 0:
+ for engine_name in engine_name_list:
+ sent_count = counter('engine', engine_name, 'search', 'count', 'sent')
+ if sent_count == 0:
continue
- result_count_sum = histogram('engine', engine_name, 'result', 'count').sum
+ successful_count = counter('engine', engine_name, 'search', 'count', 'successful')
+
time_total = histogram('engine', engine_name, 'time', 'total').percentage(50)
time_http = histogram('engine', engine_name, 'time', 'http').percentage(50)
time_total_p80 = histogram('engine', engine_name, 'time', 'total').percentage(80)
time_http_p80 = histogram('engine', engine_name, 'time', 'http').percentage(80)
time_total_p95 = histogram('engine', engine_name, 'time', 'total').percentage(95)
time_http_p95 = histogram('engine', engine_name, 'time', 'http').percentage(95)
- result_count = result_count_sum / float(successful_count)
- if result_count:
+ result_count = histogram('engine', engine_name, 'result', 'count').percentage(50)
+ result_count_sum = histogram('engine', engine_name, 'result', 'count').sum
+ if successful_count and result_count_sum:
score = counter('engine', engine_name, 'score') # noqa
score_per_result = score / float(result_count_sum)
else:
score = score_per_result = 0.0
- max_time_total = max(time_total, max_time_total or 0)
- max_result_count = max(result_count, max_result_count or 0)
+ max_time_total = max(time_total or 0, max_time_total or 0)
+ max_result_count = max(result_count or 0, max_result_count or 0)
list_time.append({
- 'total': round(time_total, 1),
- 'total_p80': round(time_total_p80, 1),
- 'total_p95': round(time_total_p95, 1),
- 'http': round(time_http, 1),
- 'http_p80': round(time_http_p80, 1),
- 'http_p95': round(time_http_p95, 1),
'name': engine_name,
- 'processing': round(time_total - time_http, 1),
- 'processing_p80': round(time_total_p80 - time_http_p80, 1),
- 'processing_p95': round(time_total_p95 - time_http_p95, 1),
+ 'total': round_or_none(time_total, 1),
+ 'total_p80': round_or_none(time_total_p80, 1),
+ 'total_p95': round_or_none(time_total_p95, 1),
+ 'http': round_or_none(time_http, 1),
+ 'http_p80': round_or_none(time_http_p80, 1),
+ 'http_p95': round_or_none(time_http_p95, 1),
+ 'processing': round(time_total - time_http, 1) if time_total else None,
+ 'processing_p80': round(time_total_p80 - time_http_p80, 1) if time_total else None,
+ 'processing_p95': round(time_total_p95 - time_http_p95, 1) if time_total else None,
'score': score,
'score_per_result': score_per_result,
'result_count': result_count,
})
-
return {
'time': list_time,
'max_time': math.ceil(max_time_total or 0),