Better opentracing config comment
parent
dde461814d
commit
34235a45e4
|
@ -1354,16 +1354,18 @@ password_config:
|
||||||
# example_option: 'things'
|
# example_option: 'things'
|
||||||
|
|
||||||
|
|
||||||
## Tracer ##
|
## Opentracing ##
|
||||||
|
# These settings enable opentracing which implements distributed tracing
|
||||||
|
# This allows you to observe the causal chain of events across servers
|
||||||
|
# including requests, key lookups etc. across any server running
|
||||||
|
# synapse or any other other services which supports opentracing.
|
||||||
|
# (specifically those implemented with jaeger)
|
||||||
|
|
||||||
#tracer:
|
#opentracing:
|
||||||
# # Enable / disable tracer
|
# # Enable / disable tracer
|
||||||
# tracer_enabled: false
|
# tracer_enabled: false
|
||||||
# # The list of users who's requests will be traced
|
# # The list of homeservers we wish to expose our current traces to.
|
||||||
# # The list is a list of regex which is matched against the user_id
|
# # The list is a list of regexes which are matched against the
|
||||||
# user_whitelist:
|
# # servername of the homeserver
|
||||||
# - "*"
|
|
||||||
# # The list of homeservers we wish to trace across
|
|
||||||
# # The list is a list of regex which is matched against the homeserver name
|
|
||||||
# homeserver_whitelist:
|
# homeserver_whitelist:
|
||||||
# - "*"
|
# - ".*"
|
||||||
|
|
|
@ -44,14 +44,20 @@ class TracerConfig(Config):
|
||||||
def generate_config_section(cls, **kwargs):
|
def generate_config_section(cls, **kwargs):
|
||||||
return """\
|
return """\
|
||||||
## Opentracing ##
|
## Opentracing ##
|
||||||
|
# These settings enable opentracing which implements distributed tracing
|
||||||
|
# This allows you to observe the causal chain of events across servers
|
||||||
|
# including requests, key lookups etc. across any server running
|
||||||
|
# synapse or any other other services which supports opentracing.
|
||||||
|
# (specifically those implemented with jaeger)
|
||||||
|
|
||||||
#opentracing:
|
#opentracing:
|
||||||
# # Enable / disable tracer
|
# # Enable / disable tracer
|
||||||
# tracer_enabled: false
|
# tracer_enabled: false
|
||||||
# # The list of homeservers we wish to trace across
|
# # The list of homeservers we wish to expose our current traces to.
|
||||||
# # The list is a list of regex which is matched against the homeserver name
|
# # The list is a list of regexes which are matched against the
|
||||||
|
# # servername of the homeserver
|
||||||
# homeserver_whitelist:
|
# homeserver_whitelist:
|
||||||
# - "*"
|
# - ".*"
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue