mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 18:14:10 +00:00
26 lines
584 B
Python
26 lines
584 B
Python
"""Handlers for serving prometheus metrics"""
|
|
|
|
from prometheus_client import CONTENT_TYPE_LATEST, REGISTRY, generate_latest
|
|
|
|
from ..utils import metrics_authentication
|
|
from .base import BaseHandler
|
|
|
|
|
|
class MetricsHandler(BaseHandler):
|
|
"""
|
|
Handler to serve Prometheus metrics
|
|
"""
|
|
|
|
_accept_token_auth = True
|
|
|
|
@metrics_authentication
|
|
async def get(self):
|
|
self.set_header('Content-Type', CONTENT_TYPE_LATEST)
|
|
self.write(generate_latest(REGISTRY))
|
|
|
|
|
|
default_handlers = [
|
|
(r'/metrics$', MetricsHandler),
|
|
(r'/api/metrics$', MetricsHandler),
|
|
]
|