aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/reference.conf
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-07-18 13:31:06 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-07-18 13:31:06 +0200
commitbfca826392933357046c5f4682cf7b43911b5433 (patch)
tree8b868447c3d6100b4de039e6a7e18835006c0515 /kamon-core/src/main/resources/reference.conf
parenta2d54a72b806ebd60f19011559a6c186d2d9640b (diff)
downloadKamon-bfca826392933357046c5f4682cf7b43911b5433.tar.gz
Kamon-bfca826392933357046c5f4682cf7b43911b5433.tar.bz2
Kamon-bfca826392933357046c5f4682cf7b43911b5433.zip
provide the proper FQCN for default identity providers and codecs
Diffstat (limited to 'kamon-core/src/main/resources/reference.conf')
-rw-r--r--kamon-core/src/main/resources/reference.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/kamon-core/src/main/resources/reference.conf b/kamon-core/src/main/resources/reference.conf
index cc4da03e..3e9d7b8d 100644
--- a/kamon-core/src/main/resources/reference.conf
+++ b/kamon-core/src/main/resources/reference.conf
@@ -110,12 +110,12 @@ kamon {
# The IdentityProvider used to generate Trace and Span Identifiers in Kamon. There are two default implementations
# that ship with Kamon:
- # - kamon.trace.IdentityProvider.Default: Creates 8-byte identifiers for both Traces and Spans.
- # - kamon.trace.IdentityProvider.DoubleSizeTraceID: Creates 16-byte identifiers for Traces and 8-byte identifiers
+ # - kamon.trace.IdentityProvider$Default: Creates 8-byte identifiers for both Traces and Spans.
+ # - kamon.trace.IdentityProvider$DoubleSizeTraceID: Creates 16-byte identifiers for Traces and 8-byte identifiers
# for Spans.
#
# Any external implementation can be configured here, as long as it can be instantiated with a parameterless constructor.
- identity-provider = "kamon.trace.IdentityProvider.Default"
+ identity-provider = "kamon.trace.IdentityProvider$Default"
# The SpanContextCodecs are used to encode/decode the SpanContext data into simple TextMaps, HTTP Headers or Binary
# carriers. The decision about which one to use is based on the kamon.trace.SpanContextCodec.Format instance passed
@@ -127,11 +127,11 @@ kamon {
# Encodes/Decodes the SpanContext data using a simple key/value pair. Since this is very rarely going to be used
# we default to using the same codec for HTTP Headers, as it is built on top of a TextMap.
- text-map = "kamon.trace.SpanContextCodec.ExtendedB3"
+ text-map = "kamon.trace.SpanContextCodec$ExtendedB3"
# Encodes/Decodes the SpanContext into a TextMap with HTTP Header friendly, URLEncoded values. The default
# implementation follows the guidelines of B3 propagation. See more at https://github.com/openzipkin/b3-propagation.
- http-headers = "kamon.trace.SpanContextCodec.ExtendedB3"
+ http-headers = "kamon.trace.SpanContextCodec$ExtendedB3"
# Encodes/Decodes the SpanContext using a binary representation.
binary = "TODO"