Added unit to logs getter

Signed-off-by: Dmitry Anurin <d.anurin@yadro.com>
This commit is contained in:
Dmitry Anurin 2023-10-11 11:10:58 +03:00
parent 14c85e0a9e
commit a204b12355
2 changed files with 2 additions and 0 deletions

View file

@ -211,6 +211,7 @@ class DockerHost(Host):
message_regex: str,
since: Optional[datetime] = None,
until: Optional[datetime] = None,
unit: Optional[str] = None,
) -> bool:
client = self._get_docker_client()
for service_config in self._config.services:

View file

@ -254,6 +254,7 @@ class Host(ABC):
message_regex: str,
since: Optional[datetime] = None,
until: Optional[datetime] = None,
unit: Optional[str] = None,
) -> bool:
"""Checks logs on host for specified message regex.