Skip to content

Commit

Permalink
Merge pull request #972 from SimunKaracic/update-kanela-agent
Browse files Browse the repository at this point in the history
Update kanela agent
  • Loading branch information
SimunKaracic authored Mar 30, 2021
2 parents e4244bd + 7ef1830 commit 7339c32
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ val `kamon-bundle` = (project in file("bundle/kamon-bundle"))
.enablePlugins(AssemblyPlugin)
.settings(
moduleName := "kamon-bundle",
kanelaAgentVersion := "1.0.7",
kanelaAgentVersion := "1.0.9",
buildInfoPackage := "kamon.bundle",
buildInfoKeys := Seq[BuildInfoKey](kanelaAgentJarName),
kanelaAgentJar := update.value.matching(Modules.exactFilter(kanelaAgent)).head,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ kamon.instrumentation.akka {
# Decides which routers should have metric tracking enabled.
#
routers {
includes = [ ]
includes = [ "**" ]
excludes = [ ]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ kamon.instrumentation.logback {
kanela.modules {
logback {
# Controls kanela loading order
# a setting of 0 ensures that it's loaded as soon as possible
order = 0
# a setting of 1 ensures that it's loaded as soon as possible
order = 2
name = "Logback Instrumentation"
description = "Provides context propagation to the MDC and on AsyncAppenders"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ kanela.modules {

scala-future {
name = "Scala Future Intrumentation"
order = 1
description = "Provides automatic context propagation to the thread executing a Scala Future's body and callbacks"
instrumentations = [
"kamon.instrumentation.futures.scala.FutureChainingInstrumentation"
Expand All @@ -34,4 +35,4 @@ kanela.modules {
"scala.util.*",
]
}
}
}
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object BaseProject extends AutoPlugin {
/** Marker configuration for dependencies that will be shaded into their module's jar. */
lazy val Shaded = config("shaded").hide

val kanelaAgent = "io.kamon" % "kanela-agent" % "1.0.7"
val kanelaAgent = "io.kamon" % "kanela-agent" % "1.0.9"
val slf4jApi = "org.slf4j" % "slf4j-api" % "1.7.25"
val slf4jnop = "org.slf4j" % "slf4j-nop" % "1.7.24"
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.2.3"
Expand Down

0 comments on commit 7339c32

Please sign in to comment.