diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-05-14 10:51:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-14 10:51:08 +0100 |
commit | c14f99be461d8ac9a36ad548e8e463feeda6394c (patch) | |
tree | 29e2faf3b7d78aae9a5c02aa7c58d54e95dc849f /docs/sample_config.yaml | |
parent | Update minimum supported version in postgres.md (#9988) (diff) | |
download | synapse-c14f99be461d8ac9a36ad548e8e463feeda6394c.tar.xz |
Support enabling opentracing by user (#9978)
Add a config option which allows enabling opentracing by user id, eg for debugging requests made by a test user.
Diffstat (limited to 'docs/sample_config.yaml')
-rw-r--r-- | docs/sample_config.yaml | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 67ad57b1aa..2952f2ba32 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -2845,7 +2845,8 @@ opentracing: #enabled: true # The list of homeservers we wish to send and receive span contexts and span baggage. - # See docs/opentracing.rst + # See docs/opentracing.rst. + # # This is a list of regexes which are matched against the server_name of the # homeserver. # @@ -2854,19 +2855,26 @@ opentracing: #homeserver_whitelist: # - ".*" + # A list of the matrix IDs of users whose requests will always be traced, + # even if the tracing system would otherwise drop the traces due to + # probabilistic sampling. + # + # By default, the list is empty. + # + #force_tracing_for_users: + # - "@user1:server_name" + # - "@user2:server_name" + # Jaeger can be configured to sample traces at different rates. # All configuration options provided by Jaeger can be set here. - # Jaeger's configuration mostly related to trace sampling which + # Jaeger's configuration is mostly related to trace sampling which # is documented here: - # https://www.jaegertracing.io/docs/1.13/sampling/. + # https://www.jaegertracing.io/docs/latest/sampling/. # #jaeger_config: # sampler: # type: const # param: 1 - - # Logging whether spans were started and reported - # # logging: # false |