[#140] Executive command changed

Added exception of error 'Too many requests' in log analyzer

Signed-off-by: Mikhail Kadilov m.kadilov@yadro.com
This commit is contained in:
Mikhail Kadilov 2023-12-11 14:20:06 +03:00
parent 247d2fbab7
commit 54d26b226c

View file

@ -247,11 +247,10 @@ class DockerHost(Host):
logger.info(f"Got exception while dumping logs of '{container_name}': {exc}")
continue
if exclude_filter:
filtered_logs = filtered_logs.replace(exclude_filter, "")
matches = re.findall(filter_regex, filtered_logs, re.IGNORECASE + re.MULTILINE)
found = list(matches)
if exclude_filter:
found = [match for match in found if match != exclude_filter]
if found:
filtered_logs += f"{container_name}:\n{os.linesep.join(found)}"