diff options
author | Alexandre Flament <alex@al-f.net> | 2021-04-23 21:08:48 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-04-25 14:28:06 +0200 |
commit | df41b7712150adf384bc08e38215a7cc9970c100 (patch) | |
tree | e03332896d7941c9d3432164fd8fa541d4f8ece5 /searx/metrics/__init__.py | |
parent | 0603b043ceadbc833410464bbf576fda8c11dc97 (diff) | |
download | searxng-df41b7712150adf384bc08e38215a7cc9970c100.tar.gz searxng-df41b7712150adf384bc08e38215a7cc9970c100.zip |
[mod] /stats : detail per engine
allow to submit a github issue including the technical details
(exceptions, errors, warning, checker result)
Diffstat (limited to 'searx/metrics/__init__.py')
-rw-r--r-- | searx/metrics/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/metrics/__init__.py b/searx/metrics/__init__.py index adcb47aeb..6ed578116 100644 --- a/searx/metrics/__init__.py +++ b/searx/metrics/__init__.py @@ -150,7 +150,7 @@ def get_reliabilities(engline_name_list, checker_results): reliabilities[engine_name] = { 'reliablity': reliablity, 'errors': errors, - 'checker': checker_results.get(engine_name, {}).get('errors', {}).keys(), + 'checker': checker_results.get(engine_name, {}).get('errors', {}), } return reliabilities |