aboutsummaryrefslogtreecommitdiff
path: root/kamon-spray/src/main/resources/reference.conf
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-spray/src/main/resources/reference.conf')
-rw-r--r--kamon-spray/src/main/resources/reference.conf7
1 files changed, 4 insertions, 3 deletions
diff --git a/kamon-spray/src/main/resources/reference.conf b/kamon-spray/src/main/resources/reference.conf
index 5c5e9317..bdba21cb 100644
--- a/kamon-spray/src/main/resources/reference.conf
+++ b/kamon-spray/src/main/resources/reference.conf
@@ -4,6 +4,7 @@
kamon {
spray {
+
# Header name used when propagating the `TraceContext.token` value across applications.
trace-token-header-name = "X-Trace-Token"
@@ -23,16 +24,16 @@ kamon {
client {
# Strategy used for automatic trace segment generation when issue requests with spray-client. The possible values
# are:
- # - pipelining: measures the time during which the user application code is waiting for a spray-client request to
+ # - request-level: measures the time during which the user application code is waiting for a spray-client request to
# complete, by attaching a callback to the Future[HttpResponse] returned by `spray.client.pipelining.sendReceive`.
# If `spray.client.pipelining.sendReceive` is not used, the segment measurement wont be performed.
- # - internal: measures the internal time taken by spray-client to finish a request. Sometimes the user application
+ # - host-level: measures the internal time taken by spray-client to finish a request. Sometimes the user application
# code has a finite future timeout (like when using `spray.client.pipelining.sendReceive`) that doesn't match
# the actual amount of time spray might take internally to resolve a request, counting retries, redirects,
# connection timeouts and so on. If using the internal strategy, the measured time will include the entire time
# since the request has been received by the corresponding `HttpHostConnector` until a response is sent back
# to the requester.
- segment-collection-strategy = pipelining
+ instrumentation-level = request-level
}
}
} \ No newline at end of file