aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-07-18 09:29:19 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-07-18 09:29:19 +0200
commit364216f15fcffd9ed4925c8279adaa5055ce9fef (patch)
treea42581a83e3af324b0d4f3769ab0858252b5e8bf /kamon-core/src/main/resources/reference.conf
parent75198eb327823cd31e90a5ff53414de501b1e071 (diff)
downloadKamon-364216f15fcffd9ed4925c8279adaa5055ce9fef.tar.gz
Kamon-364216f15fcffd9ed4925c8279adaa5055ce9fef.tar.bz2
Kamon-364216f15fcffd9ed4925c8279adaa5055ce9fef.zip
make the remote parent join mode configurable
Diffstat (limited to 'kamon-core/src/main/resources/reference.conf')
-rw-r--r--kamon-core/src/main/resources/reference.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf
index 06da8e18..cd8fa379 100644
--- a/kamon-core/src/main/resources/reference.conf
+++ b/kamon-core/src/main/resources/reference.conf
@@ -85,6 +85,13 @@ kamon {
reporter-queue-size = 1024
+ # Decide whether a new, locally created Span should have the same Span Identifier as it's remote parent (if any) or
+ # get a new local identifier. Certain tracing systems use the same Span Identifier to represent both sides (client
+ # and server) of a RPC call, if you are reporting data to such systems then this option should be enabled.
+ #
+ # If you are using Zipkin, keep this option enabled. If you are using Jaeger, disable it.
+ join-remote-parents-with-same-span-id = true
+
# Configures a sample that decides which traces should be reported to the trace backends. The possible values are:
# - always: report all traces.
# - never: don't report any trace.