0

我想使用 kamon-akka-http,目前我的项目有 Kamon bundle 依赖项,其中包含 kamon akka http。问题是我从捆绑包中的所有其他工具(Akka Instrumentation、Akka Remote Instrumentation、Executor Service Instrumentation、Logback Instrumentation 和 Scala Future Instrumentation)收到了许多其他指标

我只想接收 akka http 指标。我尝试删除捆绑包依赖项并仅添加 kamon-akka-http,这要求我将运行仪器代理 (Kanela)。我这样做了,但我仍然看到了其他仪器。

我怎样才能只运行 Akka HTTP Instrumentation?

4

1 回答 1

0

我设法通过以下配置禁用所有仪器

kanela.modules {
  akka {
    within = ""
  }
  akka-remote {
    within = ""
  }
  executor-service {
    within = ""
  }
  executor-service-capture-on-submit {
    within = ""
  }
  scala-future {
    within = ""
  }
  logback {
    within = ""
  }
}

kamon.modules {
  host-metrics {
    enabled = no
  }

  process-metrics {
    enabled = no
  }

  jvm-metrics {
    enabled = no
  }
}
于 2020-04-23T08:04:26.047 回答