0

我正在使用 Kamon DatadogAgentReporter 在我的应用程序中记录不同的指标。将 Kamon 从 0.6.x 迁移到 1.x 后,我只能看到带有标签的指标列表,没有任何服务名称。我添加了这样的记者,Kamon.addReporter(new DatadogAgentReporter()) 和下面给出的配置,

kamon {

    environment {
        service = "xxx" //application-name
        host = ""
        instance = ""
    }

    util.filters {
        datadog - tag - filter {
            includes = ["**"]
            excludes = []
        }
    }

    datadog {
        additional - tags {
            service = "yes"
            host = "yes"
            instance = "yes"
            blacklisted - tags = []
        }

        filter - config - key = "datadog-tag-filter"
    }
}

我错过了什么?如何获取指标的显示服务名称前缀?

提前致谢!

4

1 回答 1

1

这似乎是1.x 中引入的一个有意的“功能” https://github.com/kamon-io/kamon-datadog/issues/19 。他们选择了将服务名称放入标签的方法。

于 2018-11-02T08:10:01.100 回答