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.
|
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
from twisted.internet import defer
|
2016-02-04 05:15:56 -05:00
|
|
|
|
|
|
|
from synapse.util.logcontext import LoggingContext
|
|
|
|
import synapse.metrics
|
|
|
|
|
2016-08-10 05:56:38 -04:00
|
|
|
from functools import wraps
|
2016-02-04 05:15:56 -05:00
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
metrics = synapse.metrics.get_metrics_for(__name__)
|
|
|
|
|
2018-01-15 12:00:12 -05:00
|
|
|
# total number of times we have hit this block
|
2018-01-18 07:23:04 -05:00
|
|
|
block_counter = metrics.register_counter(
|
2018-01-15 12:00:12 -05:00
|
|
|
"block_count",
|
|
|
|
labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
# the following are all deprecated aliases for the same metric
|
|
|
|
metrics.name_prefix + x for x in (
|
|
|
|
"_block_timer:count",
|
|
|
|
"_block_ru_utime:count",
|
|
|
|
"_block_ru_stime:count",
|
|
|
|
"_block_db_txn_count:count",
|
|
|
|
"_block_db_txn_duration:count",
|
|
|
|
)
|
|
|
|
)
|
2016-02-04 05:15:56 -05:00
|
|
|
)
|
|
|
|
|
2018-01-15 12:00:12 -05:00
|
|
|
block_timer = metrics.register_counter(
|
|
|
|
"block_time_seconds",
|
|
|
|
labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
metrics.name_prefix + "_block_timer:total",
|
|
|
|
),
|
2016-02-04 05:15:56 -05:00
|
|
|
)
|
|
|
|
|
2018-01-15 12:00:12 -05:00
|
|
|
block_ru_utime = metrics.register_counter(
|
|
|
|
"block_ru_utime_seconds", labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
metrics.name_prefix + "_block_ru_utime:total",
|
|
|
|
),
|
2016-02-04 05:15:56 -05:00
|
|
|
)
|
|
|
|
|
2018-01-15 12:00:12 -05:00
|
|
|
block_ru_stime = metrics.register_counter(
|
|
|
|
"block_ru_stime_seconds", labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
metrics.name_prefix + "_block_ru_stime:total",
|
|
|
|
),
|
2016-02-04 05:15:56 -05:00
|
|
|
)
|
|
|
|
|
2018-01-15 12:00:12 -05:00
|
|
|
block_db_txn_count = metrics.register_counter(
|
|
|
|
"block_db_txn_count", labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
metrics.name_prefix + "_block_db_txn_count:total",
|
|
|
|
),
|
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-01-15 12:00:12 -05:00
|
|
|
block_db_txn_duration = metrics.register_counter(
|
|
|
|
"block_db_txn_duration_seconds", labels=["block_name"],
|
2018-04-09 07:58:37 -04:00
|
|
|
alternative_names=(
|
|
|
|
metrics.name_prefix + "_block_db_txn_duration:total",
|
|
|
|
),
|
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
|
|
|
|
block_db_sched_duration = metrics.register_counter(
|
|
|
|
"block_db_sched_duration_seconds", labels=["block_name"],
|
|
|
|
)
|
|
|
|
|
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)
|
|
|
|
return measured_func
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
class Measure(object):
|
2016-02-09 06:06:19 -05:00
|
|
|
__slots__ = [
|
|
|
|
"clock", "name", "start_context", "start", "new_context", "ru_utime",
|
2018-01-11 19:27:14 -05:00
|
|
|
"ru_stime",
|
|
|
|
"db_txn_count", "db_txn_duration_ms", "db_sched_duration_ms",
|
|
|
|
"created_context",
|
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):
|
|
|
|
self.start = self.clock.time_msec()
|
|
|
|
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
|
|
|
|
|
|
|
|
self.ru_utime, self.ru_stime = self.start_context.get_resource_usage()
|
|
|
|
self.db_txn_count = self.start_context.db_txn_count
|
2018-01-11 13:17:54 -05:00
|
|
|
self.db_txn_duration_ms = self.start_context.db_txn_duration_ms
|
2018-01-11 19:27:14 -05:00
|
|
|
self.db_sched_duration_ms = self.start_context.db_sched_duration_ms
|
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
|
|
|
|
|
|
|
|
duration = self.clock.time_msec() - self.start
|
2018-01-18 07:23:04 -05:00
|
|
|
|
|
|
|
block_counter.inc(self.name)
|
2016-02-04 05:15:56 -05:00
|
|
|
block_timer.inc_by(duration, self.name)
|
|
|
|
|
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)",
|
2016-08-10 09:21:10 -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
|
|
|
|
|
2016-02-04 05:15:56 -05:00
|
|
|
ru_utime, ru_stime = context.get_resource_usage()
|
|
|
|
|
2016-02-09 06:06:19 -05:00
|
|
|
block_ru_utime.inc_by(ru_utime - self.ru_utime, self.name)
|
|
|
|
block_ru_stime.inc_by(ru_stime - self.ru_stime, self.name)
|
2016-04-18 11:08:32 -04:00
|
|
|
block_db_txn_count.inc_by(
|
|
|
|
context.db_txn_count - self.db_txn_count, self.name
|
|
|
|
)
|
2016-02-09 06:06:19 -05:00
|
|
|
block_db_txn_duration.inc_by(
|
2018-01-11 13:17:54 -05:00
|
|
|
(context.db_txn_duration_ms - self.db_txn_duration_ms) / 1000.,
|
|
|
|
self.name
|
2016-02-09 06:06:19 -05:00
|
|
|
)
|
2018-01-11 19:27:14 -05:00
|
|
|
block_db_sched_duration.inc_by(
|
|
|
|
(context.db_sched_duration_ms - self.db_sched_duration_ms) / 1000.,
|
|
|
|
self.name
|
|
|
|
)
|
2016-04-18 11:08:32 -04:00
|
|
|
|
|
|
|
if self.created_context:
|
|
|
|
self.start_context.__exit__(exc_type, exc_val, exc_tb)
|