diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-04-05 17:21:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 17:21:18 +0100 |
commit | d1679a4ed7947b0814e0f2af9b888a16c588f1a1 (patch) | |
tree | 743ec101b925152bd3823e821b22f4e6e1a8d613 /synapse/util | |
parent | Merge pull request #3045 from matrix-org/dbkr/group_joinable (diff) | |
parent | Remove redundant metrics which were deprecated in 0.27.0. (diff) | |
download | synapse-d1679a4ed7947b0814e0f2af9b888a16c588f1a1.tar.xz |
Merge pull request #3066 from matrix-org/rav/remove_redundant_metrics
Remove redundant metrics which were deprecated in 0.27.0.
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/metrics.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/synapse/util/metrics.py b/synapse/util/metrics.py index e4b5687a4b..c3d8237e8f 100644 --- a/synapse/util/metrics.py +++ b/synapse/util/metrics.py @@ -31,53 +31,28 @@ metrics = synapse.metrics.get_metrics_for(__name__) block_counter = metrics.register_counter( "block_count", labels=["block_name"], - 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", - ) - ) ) block_timer = metrics.register_counter( "block_time_seconds", labels=["block_name"], - alternative_names=( - metrics.name_prefix + "_block_timer:total", - ), ) block_ru_utime = metrics.register_counter( "block_ru_utime_seconds", labels=["block_name"], - alternative_names=( - metrics.name_prefix + "_block_ru_utime:total", - ), ) block_ru_stime = metrics.register_counter( "block_ru_stime_seconds", labels=["block_name"], - alternative_names=( - metrics.name_prefix + "_block_ru_stime:total", - ), ) block_db_txn_count = metrics.register_counter( "block_db_txn_count", labels=["block_name"], - alternative_names=( - metrics.name_prefix + "_block_db_txn_count:total", - ), ) # seconds spent waiting for db txns, excluding scheduling time, in this block block_db_txn_duration = metrics.register_counter( "block_db_txn_duration_seconds", labels=["block_name"], - alternative_names=( - metrics.name_prefix + "_block_db_txn_duration:total", - ), ) # seconds spent waiting for a db connection, in this block |