diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-04-04 19:46:28 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-04-04 19:46:28 +0100 |
commit | 518f6de0881378b1fa356e21256436491d43c93c (patch) | |
tree | 00de29dc06719640b3d01915e190bed206dde61b /synapse/util | |
parent | Merge pull request #3063 from matrix-org/jcgruenhage/cache_settings_stats (diff) | |
download | synapse-518f6de0881378b1fa356e21256436491d43c93c.tar.xz |
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 |