diff options
author | Jorik Schellekens <joriksch@gmail.com> | 2019-07-23 15:46:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 15:46:04 +0100 |
commit | 3641784e8c63e1ac0deaa99519d53c0bf2853993 (patch) | |
tree | 9d37fbb50c2bb59e80d7fa285913a1146eb7e48f /docs | |
parent | Replace returnValue with return (#5736) (diff) | |
download | synapse-3641784e8c63e1ac0deaa99519d53c0bf2853993.tar.xz |
Make Jaeger fully configurable (#5694)
* Allow Jaeger to be configured * Update sample config
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sample_config.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/sample_config.yaml b/docs/sample_config.yaml index 0a96197ca6..7edf15207a 100644 --- a/docs/sample_config.yaml +++ b/docs/sample_config.yaml @@ -1430,3 +1430,19 @@ opentracing: # #homeserver_whitelist: # - ".*" + + # 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 + # is documented here: + # https://www.jaegertracing.io/docs/1.13/sampling/. + # + #jaeger_config: + # sampler: + # type: const + # param: 1 + + # Logging whether spans were started and reported + # + # logging: + # false |