Skip to content
Snippets Groups Projects
Unverified Commit 5a4da21d authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

Merge pull request #2810 from matrix-org/rav/metrics_fixes

Fix bugs in block metrics
parents d6af5512 d57765fc
Branches
Tags
No related merge requests found
...@@ -28,7 +28,7 @@ logger = logging.getLogger(__name__) ...@@ -28,7 +28,7 @@ logger = logging.getLogger(__name__)
metrics = synapse.metrics.get_metrics_for(__name__) metrics = synapse.metrics.get_metrics_for(__name__)
# total number of times we have hit this block # total number of times we have hit this block
response_count = metrics.register_counter( block_counter = metrics.register_counter(
"block_count", "block_count",
labels=["block_name"], labels=["block_name"],
alternative_names=( alternative_names=(
...@@ -76,7 +76,7 @@ block_db_txn_count = metrics.register_counter( ...@@ -76,7 +76,7 @@ block_db_txn_count = metrics.register_counter(
block_db_txn_duration = metrics.register_counter( block_db_txn_duration = metrics.register_counter(
"block_db_txn_duration_seconds", labels=["block_name"], "block_db_txn_duration_seconds", labels=["block_name"],
alternative_names=( alternative_names=(
metrics.name_prefix + "_block_db_txn_count:total", metrics.name_prefix + "_block_db_txn_duration:total",
), ),
) )
...@@ -131,6 +131,8 @@ class Measure(object): ...@@ -131,6 +131,8 @@ class Measure(object):
return return
duration = self.clock.time_msec() - self.start duration = self.clock.time_msec() - self.start
block_counter.inc(self.name)
block_timer.inc_by(duration, self.name) block_timer.inc_by(duration, self.name)
context = LoggingContext.current_context() context = LoggingContext.current_context()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment