Skip to content
elasticsearch.py 313 B
Newer Older
nimrod's avatar
nimrod committed
"""Check the Elasticsearch service."""

from utils import website_handler

URLS = [
    {"url": "http://elasticsearch.shore.co.il/", "codes": [301]},
    {"url": "https://elasticsearch.shore.co.il/", "codes": [403]},
]

handler = website_handler(URLS)


if __name__ == "__main__":
    handler("event", "context")