bitbot-3.11-fork/modules/healthcheck.py
Terrance Robotham 1fae3c378d healthcheck: typo
fix typo in healthcheck
2020-02-08 22:09:51 -05:00

17 lines
564 B
Python

#--require-config healthcheck-url
from src import ModuleManager, utils
# this module was created for use with https://healthchecks.io/
# but it can be used for any similar URL-pinging service.
class Module(ModuleManager.BaseModule):
@utils.hook("cron")
@utils.kwarg("schedule", "*/10")
def ten_minutes(self, event):
url = self.bot.config["healthcheck-url"]
try:
utils.http.request(url)
except Exception as e:
self.log.error("Failed to call healthcheck-url (%s)", [url],
exc_info=True)