2016-02-04 05:15:56 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from functools import wraps
|
2020-08-12 09:03:08 -04:00
|
|
|
from typing import Any, Callable, Optional, TypeVar, cast
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
from prometheus_client import Counter
|
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
|
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
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
# Tracks the number of blocks currently active
|
|
|
|
in_flight = InFlightGauge(
|
|
|
|
"synapse_util_metrics_block_in_flight",
|
|
|
|
"",
|
|
|
|
labels=["block_name"],
|
|
|
|
sub_metrics=["real_time_max", "real_time_sum"],
|
|
|
|
)
|
|
|
|
|
2020-08-12 09:03:08 -04:00
|
|
|
T = TypeVar("T", bound=Callable[..., Any])
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2020-08-12 09:03:08 -04:00
|
|
|
|
|
|
|
def measure_func(name: Optional[str] = None) -> Callable[[T], T]:
|
2020-08-06 08:39:35 -04:00
|
|
|
"""
|
|
|
|
Used to decorate an async function with a `Measure` context manager.
|
|
|
|
|
|
|
|
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(...):
|
|
|
|
...
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2020-08-12 09:03:08 -04:00
|
|
|
def wrapper(func: T) -> T:
|
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)
|
|
|
|
async def measured_func(self, *args, **kwargs):
|
|
|
|
with Measure(self.clock, block_name):
|
|
|
|
r = await func(self, *args, **kwargs)
|
|
|
|
return r
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-08-12 09:03:08 -04:00
|
|
|
return cast(T, measured_func)
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
def __init__(self, clock, name):
|
|
|
|
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
|
2020-09-29 08:04:52 -04:00
|
|
|
self._logging_context = LoggingContext(
|
|
|
|
"Measure[%s]" % (self.name,), parent_context
|
|
|
|
)
|
2016-02-04 05:15:56 -05:00
|
|
|
self.start = None
|
|
|
|
|
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)
|
2020-09-29 08:04:52 -04:00
|
|
|
return self
|
2018-09-14 09:39:59 -04:00
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
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
|
|
|
|
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()
|
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
def _update_in_flight(self, metrics):
|
|
|
|
"""Gets called when processing in flight metrics"""
|
|
|
|
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.
|