2016-02-04 05:15:56 -05:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2016-02-04 05:15:56 -05:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from functools import wraps
|
2021-10-06 06:20:49 -04:00
|
|
|
from types import TracebackType
|
2022-09-14 11:29:05 -04:00
|
|
|
from typing import Awaitable, Callable, Dict, Generator, Optional, Type, TypeVar
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2022-09-08 10:30:48 -04:00
|
|
|
from prometheus_client import CollectorRegistry, Counter, Metric
|
2022-05-09 06:27:39 -04:00
|
|
|
from typing_extensions import Concatenate, ParamSpec, Protocol
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2020-09-29 08:04:52 -04:00
|
|
|
from synapse.logging.context import (
|
|
|
|
ContextResourceUsage,
|
|
|
|
LoggingContext,
|
|
|
|
current_context,
|
|
|
|
)
|
2018-09-14 09:39:59 -04:00
|
|
|
from synapse.metrics import InFlightGauge
|
2021-10-06 06:20:49 -04:00
|
|
|
from synapse.util import Clock
|
2016-02-04 05:15:56 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
block_counter = Counter("synapse_util_metrics_block_count", "", ["block_name"])
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
block_timer = Counter("synapse_util_metrics_block_time_seconds", "", ["block_name"])
|
|
|
|
|
2018-05-22 18:32:57 -04:00
|
|
|
block_ru_utime = Counter(
|
|
|
|
"synapse_util_metrics_block_ru_utime_seconds", "", ["block_name"]
|
|
|
|
)
|
2018-05-21 20:47:37 -04:00
|
|
|
|
2018-05-22 18:32:57 -04:00
|
|
|
block_ru_stime = Counter(
|
|
|
|
"synapse_util_metrics_block_ru_stime_seconds", "", ["block_name"]
|
|
|
|
)
|
2018-05-21 20:47:37 -04:00
|
|
|
|
2018-05-22 18:32:57 -04:00
|
|
|
block_db_txn_count = Counter(
|
|
|
|
"synapse_util_metrics_block_db_txn_count", "", ["block_name"]
|
|
|
|
)
|
2018-01-15 12:00:12 -05:00
|
|
|
|
2018-01-11 13:17:54 -05:00
|
|
|
# seconds spent waiting for db txns, excluding scheduling time, in this block
|
2018-05-22 18:32:57 -04:00
|
|
|
block_db_txn_duration = Counter(
|
|
|
|
"synapse_util_metrics_block_db_txn_duration_seconds", "", ["block_name"]
|
|
|
|
)
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2018-01-11 19:27:14 -05:00
|
|
|
# seconds spent waiting for a db connection, in this block
|
2018-05-22 18:32:57 -04:00
|
|
|
block_db_sched_duration = Counter(
|
|
|
|
"synapse_util_metrics_block_db_sched_duration_seconds", "", ["block_name"]
|
|
|
|
)
|
2018-01-11 19:27:14 -05:00
|
|
|
|
2021-11-17 14:07:02 -05:00
|
|
|
|
|
|
|
# This is dynamically created in InFlightGauge.__init__.
|
|
|
|
class _InFlightMetric(Protocol):
|
|
|
|
real_time_max: float
|
|
|
|
real_time_sum: float
|
|
|
|
|
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
# Tracks the number of blocks currently active
|
2021-11-17 14:07:02 -05:00
|
|
|
in_flight: InFlightGauge[_InFlightMetric] = InFlightGauge(
|
2018-09-14 09:39:59 -04:00
|
|
|
"synapse_util_metrics_block_in_flight",
|
|
|
|
"",
|
|
|
|
labels=["block_name"],
|
|
|
|
sub_metrics=["real_time_max", "real_time_sum"],
|
|
|
|
)
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
|
2022-05-09 06:27:39 -04:00
|
|
|
P = ParamSpec("P")
|
|
|
|
R = TypeVar("R")
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2020-08-12 09:03:08 -04:00
|
|
|
|
2021-10-06 06:20:49 -04:00
|
|
|
class HasClock(Protocol):
|
|
|
|
clock: Clock
|
|
|
|
|
|
|
|
|
2022-05-09 06:27:39 -04:00
|
|
|
def measure_func(
|
|
|
|
name: Optional[str] = None,
|
|
|
|
) -> Callable[[Callable[P, Awaitable[R]]], Callable[P, Awaitable[R]]]:
|
|
|
|
"""Decorate an async method with a `Measure` context manager.
|
|
|
|
|
|
|
|
The Measure is created using `self.clock`; it should only be used to decorate
|
|
|
|
methods in classes defining an instance-level `clock` attribute.
|
2020-08-06 08:39:35 -04:00
|
|
|
|
|
|
|
Usage:
|
2019-10-03 12:47:20 -04:00
|
|
|
|
2020-08-06 08:39:35 -04:00
|
|
|
@measure_func()
|
|
|
|
async def foo(...):
|
|
|
|
...
|
2019-12-05 12:58:25 -05:00
|
|
|
|
2020-08-06 08:39:35 -04:00
|
|
|
Which is analogous to:
|
2019-12-05 12:58:25 -05:00
|
|
|
|
2020-08-06 08:39:35 -04:00
|
|
|
async def foo(...):
|
|
|
|
with Measure(...):
|
|
|
|
...
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2022-05-09 06:27:39 -04:00
|
|
|
def wrapper(
|
|
|
|
func: Callable[Concatenate[HasClock, P], Awaitable[R]]
|
|
|
|
) -> Callable[P, Awaitable[R]]:
|
2020-08-06 08:39:35 -04:00
|
|
|
block_name = func.__name__ if name is None else name
|
2019-12-05 12:58:25 -05:00
|
|
|
|
2020-08-06 08:39:35 -04:00
|
|
|
@wraps(func)
|
2022-05-09 06:27:39 -04:00
|
|
|
async def measured_func(self: HasClock, *args: P.args, **kwargs: P.kwargs) -> R:
|
2020-08-06 08:39:35 -04:00
|
|
|
with Measure(self.clock, block_name):
|
|
|
|
r = await func(self, *args, **kwargs)
|
|
|
|
return r
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2022-05-09 06:27:39 -04:00
|
|
|
# There are some shenanigans here, because we're decorating a method but
|
|
|
|
# explicitly making use of the `self` parameter. The key thing here is that the
|
|
|
|
# return type within the return type for `measure_func` itself describes how the
|
|
|
|
# decorated function will be called.
|
|
|
|
return measured_func # type: ignore[return-value]
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2022-05-09 06:27:39 -04:00
|
|
|
return wrapper # type: ignore[return-value]
|
2016-08-10 05:56:38 -04:00
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class Measure:
|
2016-02-09 06:06:19 -05:00
|
|
|
__slots__ = [
|
2018-07-10 08:56:07 -04:00
|
|
|
"clock",
|
|
|
|
"name",
|
2019-12-09 06:55:30 -05:00
|
|
|
"_logging_context",
|
2018-07-10 08:56:07 -04:00
|
|
|
"start",
|
2016-02-09 06:06:19 -05:00
|
|
|
]
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2021-10-06 06:20:49 -04:00
|
|
|
def __init__(self, clock: Clock, name: str) -> None:
|
2021-04-20 09:19:00 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2021-10-06 06:20:49 -04:00
|
|
|
clock: An object with a "time()" method, which returns the current
|
2021-04-20 09:19:00 -04:00
|
|
|
time in seconds.
|
|
|
|
name: The name of the metric to report.
|
|
|
|
"""
|
2016-02-04 05:15:56 -05:00
|
|
|
self.clock = clock
|
|
|
|
self.name = name
|
2021-01-05 08:06:55 -05:00
|
|
|
curr_context = current_context()
|
|
|
|
if not curr_context:
|
|
|
|
logger.warning(
|
2021-01-08 09:33:53 -05:00
|
|
|
"Starting metrics collection %r from sentinel context: metrics will be lost",
|
|
|
|
name,
|
2021-01-05 08:06:55 -05:00
|
|
|
)
|
|
|
|
parent_context = None
|
|
|
|
else:
|
|
|
|
assert isinstance(curr_context, LoggingContext)
|
|
|
|
parent_context = curr_context
|
2021-04-20 09:19:00 -04:00
|
|
|
self._logging_context = LoggingContext(str(curr_context), parent_context)
|
2021-10-06 06:20:49 -04:00
|
|
|
self.start: Optional[float] = None
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2020-09-29 08:04:52 -04:00
|
|
|
def __enter__(self) -> "Measure":
|
|
|
|
if self.start is not None:
|
2019-12-09 06:55:30 -05:00
|
|
|
raise RuntimeError("Measure() objects cannot be re-used")
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2019-12-09 06:55:30 -05:00
|
|
|
self.start = self.clock.time()
|
|
|
|
self._logging_context.__enter__()
|
2018-09-14 09:39:59 -04:00
|
|
|
in_flight.register((self.name,), self._update_in_flight)
|
2021-06-16 08:29:54 -04:00
|
|
|
|
|
|
|
logger.debug("Entering block %s", self.name)
|
|
|
|
|
2020-09-29 08:04:52 -04:00
|
|
|
return self
|
2018-09-14 09:39:59 -04:00
|
|
|
|
2021-10-06 06:20:49 -04:00
|
|
|
def __exit__(
|
|
|
|
self,
|
|
|
|
exc_type: Optional[Type[BaseException]],
|
|
|
|
exc_val: Optional[BaseException],
|
|
|
|
exc_tb: Optional[TracebackType],
|
|
|
|
) -> None:
|
2020-09-29 08:04:52 -04:00
|
|
|
if self.start is None:
|
2019-12-09 06:55:30 -05:00
|
|
|
raise RuntimeError("Measure() block exited without being entered")
|
2018-09-14 09:39:59 -04:00
|
|
|
|
2021-06-16 08:29:54 -04:00
|
|
|
logger.debug("Exiting block %s", self.name)
|
|
|
|
|
2018-05-28 05:39:27 -04:00
|
|
|
duration = self.clock.time() - self.start
|
2020-09-29 08:04:52 -04:00
|
|
|
usage = self.get_resource_usage()
|
2018-01-18 07:23:04 -05:00
|
|
|
|
2019-12-09 06:55:30 -05:00
|
|
|
in_flight.unregister((self.name,), self._update_in_flight)
|
|
|
|
self._logging_context.__exit__(exc_type, exc_val, exc_tb)
|
2016-02-04 05:22:44 -05:00
|
|
|
|
2018-07-19 06:58:18 -04:00
|
|
|
try:
|
2019-12-09 06:55:30 -05:00
|
|
|
block_counter.labels(self.name).inc()
|
|
|
|
block_timer.labels(self.name).inc(duration)
|
2018-07-19 06:58:18 -04:00
|
|
|
block_ru_utime.labels(self.name).inc(usage.ru_utime)
|
|
|
|
block_ru_stime.labels(self.name).inc(usage.ru_stime)
|
|
|
|
block_db_txn_count.labels(self.name).inc(usage.db_txn_count)
|
|
|
|
block_db_txn_duration.labels(self.name).inc(usage.db_txn_duration_sec)
|
|
|
|
block_db_sched_duration.labels(self.name).inc(usage.db_sched_duration_sec)
|
|
|
|
except ValueError:
|
2019-12-09 06:55:30 -05:00
|
|
|
logger.warning("Failed to save metrics! Usage: %s", usage)
|
2018-09-14 09:39:59 -04:00
|
|
|
|
2020-09-29 08:04:52 -04:00
|
|
|
def get_resource_usage(self) -> ContextResourceUsage:
|
|
|
|
"""Get the resources used within this Measure block
|
|
|
|
|
|
|
|
If the Measure block is still active, returns the resource usage so far.
|
|
|
|
"""
|
|
|
|
return self._logging_context.get_resource_usage()
|
|
|
|
|
2021-11-16 08:47:36 -05:00
|
|
|
def _update_in_flight(self, metrics: _InFlightMetric) -> None:
|
2018-09-14 09:39:59 -04:00
|
|
|
"""Gets called when processing in flight metrics"""
|
2021-10-06 06:20:49 -04:00
|
|
|
assert self.start is not None
|
2018-09-14 09:39:59 -04:00
|
|
|
duration = self.clock.time() - self.start
|
|
|
|
|
|
|
|
metrics.real_time_max = max(metrics.real_time_max, duration)
|
|
|
|
metrics.real_time_sum += duration
|
|
|
|
|
|
|
|
# TODO: Add other in flight metrics.
|
2022-09-08 10:30:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
class DynamicCollectorRegistry(CollectorRegistry):
|
|
|
|
"""
|
|
|
|
Custom Prometheus Collector registry that calls a hook first, allowing you
|
|
|
|
to update metrics on-demand.
|
|
|
|
|
|
|
|
Don't forget to register this registry with the main registry!
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self) -> None:
|
|
|
|
super().__init__()
|
2022-09-14 11:29:05 -04:00
|
|
|
self._pre_update_hooks: Dict[str, Callable[[], None]] = {}
|
2022-09-08 10:30:48 -04:00
|
|
|
|
|
|
|
def collect(self) -> Generator[Metric, None, None]:
|
|
|
|
"""
|
|
|
|
Collects metrics, calling pre-update hooks first.
|
|
|
|
"""
|
|
|
|
|
2022-09-14 11:29:05 -04:00
|
|
|
for pre_update_hook in self._pre_update_hooks.values():
|
2022-09-08 10:30:48 -04:00
|
|
|
pre_update_hook()
|
|
|
|
|
|
|
|
yield from super().collect()
|
|
|
|
|
2022-09-14 11:29:05 -04:00
|
|
|
def register_hook(self, metric_name: str, hook: Callable[[], None]) -> None:
|
2022-09-08 10:30:48 -04:00
|
|
|
"""
|
|
|
|
Registers a hook that is called before metric collection.
|
|
|
|
"""
|
|
|
|
|
2022-09-14 11:29:05 -04:00
|
|
|
self._pre_update_hooks[metric_name] = hook
|