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
|
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
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
from synapse.metrics import InFlightGauge
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.logcontext import LoggingContext
|
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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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(
|
2019-06-20 05:32:02 -04:00
|
|
|
"synapse_util_metrics_block_in_flight",
|
|
|
|
"",
|
2018-09-14 09:39:59 -04:00
|
|
|
labels=["block_name"],
|
|
|
|
sub_metrics=["real_time_max", "real_time_sum"],
|
|
|
|
)
|
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
def measure_func(name):
|
|
|
|
def wrapper(func):
|
|
|
|
@wraps(func)
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def measured_func(self, *args, **kwargs):
|
|
|
|
with Measure(self.clock, name):
|
|
|
|
r = yield func(self, *args, **kwargs)
|
|
|
|
defer.returnValue(r)
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
return measured_func
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
class Measure(object):
|
2016-02-09 06:06:19 -05:00
|
|
|
__slots__ = [
|
2019-06-20 05:32:02 -04:00
|
|
|
"clock",
|
|
|
|
"name",
|
|
|
|
"start_context",
|
|
|
|
"start",
|
2018-01-11 19:27:14 -05:00
|
|
|
"created_context",
|
2018-07-10 08:56:07 -04:00
|
|
|
"start_usage",
|
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
|
|
|
|
self.start_context = None
|
|
|
|
self.start = None
|
2016-04-18 11:08:32 -04:00
|
|
|
self.created_context = False
|
2016-02-04 05:15:56 -05:00
|
|
|
|
|
|
|
def __enter__(self):
|
2018-05-28 05:39:27 -04:00
|
|
|
self.start = self.clock.time()
|
2016-02-04 05:15:56 -05:00
|
|
|
self.start_context = LoggingContext.current_context()
|
2016-04-18 11:08:32 -04:00
|
|
|
if not self.start_context:
|
|
|
|
self.start_context = LoggingContext("Measure")
|
|
|
|
self.start_context.__enter__()
|
|
|
|
self.created_context = True
|
|
|
|
|
2018-07-10 08:56:07 -04:00
|
|
|
self.start_usage = self.start_context.get_resource_usage()
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
in_flight.register((self.name,), self._update_in_flight)
|
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
2016-08-19 13:13:07 -04:00
|
|
|
if isinstance(exc_type, Exception) or not self.start_context:
|
2016-02-04 05:15:56 -05:00
|
|
|
return
|
|
|
|
|
2018-09-14 09:39:59 -04:00
|
|
|
in_flight.unregister((self.name,), self._update_in_flight)
|
|
|
|
|
2018-05-28 05:39:27 -04:00
|
|
|
duration = self.clock.time() - self.start
|
2018-01-18 07:23:04 -05:00
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
block_counter.labels(self.name).inc()
|
|
|
|
block_timer.labels(self.name).inc(duration)
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2016-02-09 06:06:19 -05:00
|
|
|
context = LoggingContext.current_context()
|
2016-02-04 05:15:56 -05:00
|
|
|
|
2016-02-09 06:06:19 -05:00
|
|
|
if context != self.start_context:
|
2016-02-04 05:15:56 -05:00
|
|
|
logger.warn(
|
2016-07-26 04:09:25 -04:00
|
|
|
"Context has unexpectedly changed from '%s' to '%s'. (%r)",
|
2019-06-20 05:32:02 -04:00
|
|
|
self.start_context,
|
|
|
|
context,
|
|
|
|
self.name,
|
2016-02-04 05:15:56 -05:00
|
|
|
)
|
|
|
|
return
|
|
|
|
|
2016-02-04 05:22:44 -05:00
|
|
|
if not context:
|
|
|
|
logger.warn("Expected context. (%r)", self.name)
|
|
|
|
return
|
|
|
|
|
2018-07-19 06:58:18 -04:00
|
|
|
current = context.get_resource_usage()
|
|
|
|
usage = current - self.start_usage
|
|
|
|
try:
|
|
|
|
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:
|
|
|
|
logger.warn(
|
2019-06-20 05:32:02 -04:00
|
|
|
"Failed to save metrics! OLD: %r, NEW: %r", self.start_usage, current
|
2018-07-19 06:58:18 -04:00
|
|
|
)
|
2016-04-18 11:08:32 -04:00
|
|
|
|
|
|
|
if self.created_context:
|
|
|
|
self.start_context.__exit__(exc_type, exc_val, exc_tb)
|
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.
|