mirror of
https://github.com/element-hq/synapse.git
synced 2026-01-16 23:00:43 +00:00
aka PEP 585, added in Python 3.9 - https://peps.python.org/pep-0585/ - https://docs.astral.sh/ruff/rules/non-pep585-annotation/
309 lines
9.7 KiB
Python
309 lines
9.7 KiB
Python
#
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
#
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# See the GNU Affero General Public License for more details:
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
#
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
#
|
|
# [This file includes modifications made by New Vector Limited]
|
|
#
|
|
#
|
|
|
|
import logging
|
|
import threading
|
|
import traceback
|
|
from typing import Mapping
|
|
|
|
from prometheus_client.core import Counter, Histogram
|
|
|
|
from synapse.logging.context import current_context
|
|
from synapse.metrics import SERVER_NAME_LABEL, LaterGauge
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
# total number of responses served, split by method/servlet/tag
|
|
response_count = Counter(
|
|
"synapse_http_server_response_count",
|
|
"",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
requests_counter = Counter(
|
|
"synapse_http_server_requests_received",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
outgoing_responses_counter = Counter(
|
|
"synapse_http_server_responses",
|
|
"",
|
|
labelnames=["method", "code", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
response_timer = Histogram(
|
|
"synapse_http_server_response_time_seconds",
|
|
"sec",
|
|
labelnames=["method", "servlet", "tag", "code", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
response_ru_utime = Counter(
|
|
"synapse_http_server_response_ru_utime_seconds",
|
|
"sec",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
response_ru_stime = Counter(
|
|
"synapse_http_server_response_ru_stime_seconds",
|
|
"sec",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
response_db_txn_count = Counter(
|
|
"synapse_http_server_response_db_txn_count",
|
|
"",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# seconds spent waiting for db txns, excluding scheduling time, when processing
|
|
# this request
|
|
response_db_txn_duration = Counter(
|
|
"synapse_http_server_response_db_txn_duration_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# seconds spent waiting for a db connection, when processing this request
|
|
response_db_sched_duration = Counter(
|
|
"synapse_http_server_response_db_sched_duration_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# size in bytes of the response written
|
|
response_size = Counter(
|
|
"synapse_http_server_response_size",
|
|
"",
|
|
labelnames=["method", "servlet", "tag", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# In flight metrics are incremented while the requests are in flight, rather
|
|
# than when the response was written.
|
|
|
|
in_flight_requests_ru_utime = Counter(
|
|
"synapse_http_server_in_flight_requests_ru_utime_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
in_flight_requests_ru_stime = Counter(
|
|
"synapse_http_server_in_flight_requests_ru_stime_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
in_flight_requests_db_txn_count = Counter(
|
|
"synapse_http_server_in_flight_requests_db_txn_count",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# seconds spent waiting for db txns, excluding scheduling time, when processing
|
|
# this request
|
|
in_flight_requests_db_txn_duration = Counter(
|
|
"synapse_http_server_in_flight_requests_db_txn_duration_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
# seconds spent waiting for a db connection, when processing this request
|
|
in_flight_requests_db_sched_duration = Counter(
|
|
"synapse_http_server_in_flight_requests_db_sched_duration_seconds",
|
|
"",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
|
|
_in_flight_requests: set["RequestMetrics"] = set()
|
|
|
|
# Protects the _in_flight_requests set from concurrent access
|
|
_in_flight_requests_lock = threading.Lock()
|
|
|
|
|
|
def _get_in_flight_counts() -> Mapping[tuple[str, ...], int]:
|
|
"""Returns a count of all in flight requests by (method, server_name)"""
|
|
# Cast to a list to prevent it changing while the Prometheus
|
|
# thread is collecting metrics
|
|
with _in_flight_requests_lock:
|
|
request_metrics = list(_in_flight_requests)
|
|
|
|
for request_metric in request_metrics:
|
|
request_metric.update_metrics()
|
|
|
|
# Map from (method, name) -> int, the number of in flight requests of that
|
|
# type. The key type is Tuple[str, str], but we leave the length unspecified
|
|
# for compatability with LaterGauge's annotations.
|
|
counts: dict[tuple[str, ...], int] = {}
|
|
for request_metric in request_metrics:
|
|
key = (
|
|
request_metric.method,
|
|
request_metric.name,
|
|
request_metric.our_server_name,
|
|
)
|
|
counts[key] = counts.get(key, 0) + 1
|
|
|
|
return counts
|
|
|
|
|
|
in_flight_requests = LaterGauge(
|
|
name="synapse_http_server_in_flight_requests_count",
|
|
desc="",
|
|
labelnames=["method", "servlet", SERVER_NAME_LABEL],
|
|
)
|
|
in_flight_requests.register_hook(
|
|
homeserver_instance_id=None, hook=_get_in_flight_counts
|
|
)
|
|
|
|
|
|
class RequestMetrics:
|
|
def __init__(self, our_server_name: str) -> None:
|
|
"""
|
|
Args:
|
|
our_server_name: Our homeserver name (used to label metrics) (`hs.hostname`)
|
|
"""
|
|
self.our_server_name = our_server_name
|
|
|
|
def start(self, time_sec: float, name: str, method: str) -> None:
|
|
self.start_ts = time_sec
|
|
self.start_context = current_context()
|
|
self.name = name
|
|
self.method = method
|
|
|
|
if self.start_context:
|
|
# _request_stats records resource usage that we have already added
|
|
# to the "in flight" metrics.
|
|
self._request_stats = self.start_context.get_resource_usage()
|
|
else:
|
|
logger.error(
|
|
"Tried to start a RequestMetric from the sentinel context.\n%s",
|
|
"".join(traceback.format_stack()),
|
|
)
|
|
|
|
with _in_flight_requests_lock:
|
|
_in_flight_requests.add(self)
|
|
|
|
def stop(self, time_sec: float, response_code: int, sent_bytes: int) -> None:
|
|
with _in_flight_requests_lock:
|
|
_in_flight_requests.discard(self)
|
|
|
|
context = current_context()
|
|
|
|
tag = ""
|
|
if context:
|
|
tag = context.tag
|
|
|
|
if context != self.start_context:
|
|
logger.error(
|
|
"Context have unexpectedly changed %r, %r",
|
|
context,
|
|
self.start_context,
|
|
)
|
|
return
|
|
else:
|
|
logger.error(
|
|
"Trying to stop RequestMetrics in the sentinel context.\n%s",
|
|
"".join(traceback.format_stack()),
|
|
)
|
|
return
|
|
|
|
response_code_str = str(response_code)
|
|
|
|
outgoing_responses_counter.labels(
|
|
method=self.method,
|
|
code=response_code_str,
|
|
**{SERVER_NAME_LABEL: self.our_server_name},
|
|
).inc()
|
|
|
|
response_base_labels = {
|
|
"method": self.method,
|
|
"servlet": self.name,
|
|
"tag": tag,
|
|
SERVER_NAME_LABEL: self.our_server_name,
|
|
}
|
|
|
|
response_count.labels(**response_base_labels).inc()
|
|
|
|
response_timer.labels(
|
|
code=response_code_str,
|
|
**response_base_labels,
|
|
).observe(time_sec - self.start_ts)
|
|
|
|
resource_usage = context.get_resource_usage()
|
|
|
|
response_ru_utime.labels(**response_base_labels).inc(resource_usage.ru_utime)
|
|
response_ru_stime.labels(**response_base_labels).inc(resource_usage.ru_stime)
|
|
response_db_txn_count.labels(**response_base_labels).inc(
|
|
resource_usage.db_txn_count
|
|
)
|
|
response_db_txn_duration.labels(**response_base_labels).inc(
|
|
resource_usage.db_txn_duration_sec
|
|
)
|
|
response_db_sched_duration.labels(**response_base_labels).inc(
|
|
resource_usage.db_sched_duration_sec
|
|
)
|
|
response_size.labels(**response_base_labels).inc(sent_bytes)
|
|
|
|
# We always call this at the end to ensure that we update the metrics
|
|
# regardless of whether a call to /metrics while the request was in
|
|
# flight.
|
|
self.update_metrics()
|
|
|
|
def update_metrics(self) -> None:
|
|
"""Updates the in flight metrics with values from this request."""
|
|
if not self.start_context:
|
|
logger.error(
|
|
"Tried to update a RequestMetric from the sentinel context.\n%s",
|
|
"".join(traceback.format_stack()),
|
|
)
|
|
return
|
|
new_stats = self.start_context.get_resource_usage()
|
|
|
|
diff = new_stats - self._request_stats
|
|
self._request_stats = new_stats
|
|
|
|
in_flight_labels = {
|
|
"method": self.method,
|
|
"servlet": self.name,
|
|
SERVER_NAME_LABEL: self.our_server_name,
|
|
}
|
|
|
|
# max() is used since rapid use of ru_stime/ru_utime can end up with the
|
|
# count going backwards due to NTP, time smearing, fine-grained
|
|
# correction, or floating points. Who knows, really?
|
|
in_flight_requests_ru_utime.labels(**in_flight_labels).inc(
|
|
max(diff.ru_utime, 0)
|
|
)
|
|
in_flight_requests_ru_stime.labels(**in_flight_labels).inc(
|
|
max(diff.ru_stime, 0)
|
|
)
|
|
|
|
in_flight_requests_db_txn_count.labels(**in_flight_labels).inc(
|
|
diff.db_txn_count
|
|
)
|
|
|
|
in_flight_requests_db_txn_duration.labels(**in_flight_labels).inc(
|
|
diff.db_txn_duration_sec
|
|
)
|
|
|
|
in_flight_requests_db_sched_duration.labels(**in_flight_labels).inc(
|
|
diff.db_sched_duration_sec
|
|
)
|