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.
|
|
|
|
|
|
|
|
|
|
|
|
from synapse.util.logcontext import LoggingContext
|
|
|
|
import synapse.metrics
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
metrics = synapse.metrics.get_metrics_for(__name__)
|
|
|
|
|
|
|
|
block_timer = metrics.register_distribution(
|
|
|
|
"block_timer",
|
|
|
|
labels=["block_name"]
|
|
|
|
)
|
|
|
|
|
|
|
|
block_ru_utime = metrics.register_distribution(
|
|
|
|
"block_ru_utime", labels=["block_name"]
|
|
|
|
)
|
|
|
|
|
|
|
|
block_ru_stime = metrics.register_distribution(
|
|
|
|
"block_ru_stime", labels=["block_name"]
|
|
|
|
)
|
|
|
|
|
|
|
|
block_db_txn_count = metrics.register_distribution(
|
|
|
|
"block_db_txn_count", labels=["block_name"]
|
|
|
|
)
|
|
|
|
|
|
|
|
block_db_txn_duration = metrics.register_distribution(
|
|
|
|
"block_db_txn_duration", labels=["block_name"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class Measure(object):
|
2016-02-09 06:06:19 -05:00
|
|
|
__slots__ = [
|
|
|
|
"clock", "name", "start_context", "start", "new_context", "ru_utime",
|
2016-04-18 11:08:32 -04:00
|
|
|
"ru_stime", "db_txn_count", "db_txn_duration", "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:
|
|
|
|
logger.warn("Entered Measure without log context: %s", self.name)
|
|
|
|
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
|
|
|
|
self.db_txn_duration = self.start_context.db_txn_duration
|
2016-02-04 05:15:56 -05:00
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
2016-02-09 08:50:29 -05:00
|
|
|
if exc_type is not None or not self.start_context:
|
2016-02-04 05:15:56 -05:00
|
|
|
return
|
|
|
|
|
|
|
|
duration = self.clock.time_msec() - self.start
|
|
|
|
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-02-04 05:22:44 -05:00
|
|
|
"Context have unexpectedly changed from '%s' to '%s'. (%r)",
|
|
|
|
context, self.start_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(
|
|
|
|
context.db_txn_duration - self.db_txn_duration, self.name
|
|
|
|
)
|
2016-04-18 11:08:32 -04:00
|
|
|
|
|
|
|
if self.created_context:
|
|
|
|
self.start_context.__exit__(exc_type, exc_val, exc_tb)
|