Part of https://github.com/element-hq/synapse/issues/18592 Separated out of https://github.com/element-hq/synapse/pull/18656 because it's a bigger, unique piece of the refactor ### Testing strategy 1. Add the `metrics` listener in your `homeserver.yaml` ```yaml listeners: # This is just showing how to configure metrics either way # # `http` `metrics` resource - port: 9322 type: http bind_addresses: ['127.0.0.1'] resources: - names: [metrics] compress: false # `metrics` listener - port: 9323 type: metrics bind_addresses: ['127.0.0.1'] ``` 1. Start the homeserver: `poetry run synapse_homeserver --config-path homeserver.yaml` 1. Fetch `http://localhost:9322/_synapse/metrics` and/or `http://localhost:9323/metrics` 1. Observe response includes the background processs metrics (`synapse_background_process_start_count`, `synapse_background_process_db_txn_count_total`, etc) with the `server_name` label |
||
|---|---|---|
| .. | ||
| databases | ||
| util | ||
| __init__.py | ||
| test__base.py | ||
| test_account_data.py | ||
| test_appservice.py | ||
| test_background_update.py | ||
| test_base.py | ||
| test_cleanup_extrems.py | ||
| test_client_ips.py | ||
| test_database.py | ||
| test_devices.py | ||
| test_directory.py | ||
| test_e2e_room_keys.py | ||
| test_end_to_end_keys.py | ||
| test_event_chain.py | ||
| test_event_federation.py | ||
| test_event_metrics.py | ||
| test_event_push_actions.py | ||
| test_events_bg_updates.py | ||
| test_events.py | ||
| test_id_generators.py | ||
| test_invite_rule.py | ||
| test_main.py | ||
| test_monthly_active_users.py | ||
| test_profile.py | ||
| test_purge.py | ||
| test_receipts.py | ||
| test_redaction.py | ||
| test_registration.py | ||
| test_relations.py | ||
| test_rollback_worker.py | ||
| test_room_search.py | ||
| test_room.py | ||
| test_roommember.py | ||
| test_sliding_sync_tables.py | ||
| test_state_deletion.py | ||
| test_state.py | ||
| test_stream.py | ||
| test_thread_subscriptions.py | ||
| test_transactions.py | ||
| test_txn_limit.py | ||
| test_unsafe_locale.py | ||
| test_user_directory.py | ||
| test_user_filters.py | ||