File tree 5 files changed +7
-6
lines changed
kamon-akka/src/common/resources
kamon-logback/src/main/resources
kamon-scala-future/src/main/resources
5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -620,7 +620,7 @@ val `kamon-bundle` = (project in file("bundle/kamon-bundle"))
620
620
.enablePlugins(AssemblyPlugin )
621
621
.settings(
622
622
moduleName := " kamon-bundle" ,
623
- kanelaAgentVersion := " 1.0.7 " ,
623
+ kanelaAgentVersion := " 1.0.9 " ,
624
624
buildInfoPackage := " kamon.bundle" ,
625
625
buildInfoKeys := Seq [BuildInfoKey ](kanelaAgentJarName),
626
626
kanelaAgentJar := update.value.matching(Modules .exactFilter(kanelaAgent)).head,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ kamon.instrumentation.akka {
98
98
# Decides which routers should have metric tracking enabled.
99
99
#
100
100
routers {
101
- includes = [ ]
101
+ includes = [ "**" ]
102
102
excludes = [ ]
103
103
}
104
104
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ kamon.instrumentation.logback {
36
36
kanela.modules {
37
37
logback {
38
38
# Controls kanela loading order
39
- # a setting of 0 ensures that it's loaded as soon as possible
40
- order = 0
39
+ # a setting of 1 ensures that it's loaded as soon as possible
40
+ order = 2
41
41
name = "Logback Instrumentation"
42
42
description = "Provides context propagation to the MDC and on AsyncAppenders"
43
43
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ kanela.modules {
24
24
25
25
scala-future {
26
26
name = "Scala Future Intrumentation"
27
+ order = 1
27
28
description = "Provides automatic context propagation to the thread executing a Scala Future's body and callbacks"
28
29
instrumentations = [
29
30
"kamon.instrumentation.futures.scala.FutureChainingInstrumentation"
@@ -34,4 +35,4 @@ kanela.modules {
34
35
"scala.util.*",
35
36
]
36
37
}
37
- }
38
+ }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ object BaseProject extends AutoPlugin {
27
27
/** Marker configuration for dependencies that will be shaded into their module's jar. */
28
28
lazy val Shaded = config(" shaded" ).hide
29
29
30
- val kanelaAgent = " io.kamon" % " kanela-agent" % " 1.0.7 "
30
+ val kanelaAgent = " io.kamon" % " kanela-agent" % " 1.0.9 "
31
31
val slf4jApi = " org.slf4j" % " slf4j-api" % " 1.7.25"
32
32
val slf4jnop = " org.slf4j" % " slf4j-nop" % " 1.7.24"
33
33
val logbackClassic = " ch.qos.logback" % " logback-classic" % " 1.2.3"
You can’t perform that action at this time.
0 commit comments