a
    m b                     @   s   d dl mZ dd ZdS )   )HTTP_REQUEST_DURATION_SECONDSc                 C   s:   t j| jjd| jjt| j| 	 d
| j  dS )a  
    Tornado log handler for recording RED metrics.

    We record the following metrics:
       Rate - the number of requests, per second, your services are serving.
       Errors - the number of failed requests per second.
       Duration - The amount of time each request takes expressed as a time interval.

    We use a fully qualified name of the handler as a label,
    rather than every url path to reduce cardinality.

    This function should be either the value of or called from a function
    that is the 'log_function' tornado setting. This makes it get called
    at the end of every request, allowing us to record the metrics we need.
    z{}.{})methodhandlerZstatus_codeN)r   labelsZrequestr   format	__class__
__module__type__name__Z
get_statusZobserveZrequest_time)r    r   Flib/python3.9/site-packages/jupyter_server/prometheus/log_functions.pyprometheus_log_method   s    r   N)Zmetricsr   r   r   r   r   r   <module>   s   