2020-08-06 05:11:26 +03:00
|
|
|
"""Monitors module."""
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import time
|
|
|
|
from typing import Dict, Any
|
|
|
|
|
|
|
|
from .http import HttpClient
|
|
|
|
|
|
|
|
|
|
|
|
class Monitor:
|
|
|
|
|
|
|
|
def __init__(self, check_every: int) -> None:
|
|
|
|
self.check_every = check_every
|
2020-08-08 21:48:05 +03:00
|
|
|
self.logger = logging.getLogger(self.__class__.__name__)
|
2020-08-06 05:11:26 +03:00
|
|
|
|
|
|
|
async def check(self) -> None:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
class HttpMonitor(Monitor):
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
http_client: HttpClient,
|
|
|
|
options: Dict[str, Any],
|
|
|
|
) -> None:
|
|
|
|
self._client = http_client
|
2021-09-30 22:03:19 +03:00
|
|
|
self._method = options.pop("method")
|
|
|
|
self._url = options.pop("url")
|
|
|
|
self._timeout = options.pop("timeout")
|
|
|
|
super().__init__(check_every=options.pop("check_every"))
|
2020-08-06 05:11:26 +03:00
|
|
|
|
|
|
|
async def check(self) -> None:
|
|
|
|
time_start = time.time()
|
|
|
|
|
|
|
|
response = await self._client.request(
|
|
|
|
method=self._method,
|
|
|
|
url=self._url,
|
|
|
|
timeout=self._timeout,
|
|
|
|
)
|
|
|
|
|
|
|
|
time_end = time.time()
|
|
|
|
time_took = time_end - time_start
|
|
|
|
|
|
|
|
self.logger.info(
|
2021-09-30 22:03:19 +03:00
|
|
|
"Check\n"
|
|
|
|
" %s %s\n"
|
|
|
|
" response code: %s\n"
|
|
|
|
" content length: %s\n"
|
|
|
|
" request took: %s seconds",
|
2020-08-08 21:48:05 +03:00
|
|
|
self._method,
|
|
|
|
self._url,
|
2020-08-06 05:11:26 +03:00
|
|
|
response.status,
|
|
|
|
response.content_length,
|
|
|
|
round(time_took, 3)
|
|
|
|
)
|