Commit 99bc5ba5 authored by nimrod's avatar nimrod
Browse files

Add some documentation.

Docstrings for the different checks.
parent 850df70b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
"""Check DNS.

Check name servers, synchronization between them, TCP connection and some
important records.
"""

from functools import lru_cache
import dns.resolver  # pylint: disable=import-error
import dns.query  # pylint: disable=import-error
+2 −0
Original line number Diff line number Diff line
"""Check the auth.shore.co.il web service."""

from utils import website_handler

URLS = [
+2 −0
Original line number Diff line number Diff line
"""Check the autoconfig.shore.co.il web page."""

from utils import website_handler

URLS = [
+2 −0
Original line number Diff line number Diff line
"""Check the Elasticsearch service."""

from utils import website_handler

URLS = [
+2 −0
Original line number Diff line number Diff line
"""Check Gitlab."""

from utils import website_handler

URLS = [
Loading