healthcheck

This commit is contained in:
Pablo Martin 2024-08-08 18:34:27 +02:00
parent dbba7a1090
commit f8e532d017
3 changed files with 21 additions and 1 deletions

10
anaxi/processes.py Normal file
View file

@ -0,0 +1,10 @@
import logging
logger = logging.getLogger()
def run_cosmos_db_healthcheck_process(cosmos_db_id: str) -> None:
logger.info(
f"If I had a cosmos db connector, I would really try to hit this database: {cosmos_db_id}"
)