MedQA / services /metrics.py
mgbam's picture
Create services/metrics.py
2cb216c verified
raw
history blame
270 Bytes
from prometheus_client import Counter, start_http_server
# HTTP endpoint for Prometheus to scrape
start_http_server(8001)
CHAT_COUNT = Counter("chat_requests_total", "Total chat requests")
OPTIMIZE_COUNT = Counter("optimize_requests_total", "Total optimize requests")