0

我将dropwizard 指标metrics-datadog 一起使用。

创建报告如下:

HttpTransport httpTransport = new HttpTransport.Builder().withApiKey(API_KEY).build();

DatadogReporter reporter;
reporter = DatadogReporter.forRegistry(metrics)
            .withTransport(httpTransport)
            .withPrefix(PREFIX)
            .withTags(tags)
            .convertRatesTo(TimeUnit.SECONDS)
            .convertDurationsTo(TimeUnit.MILLISECONDS)
            .filter(MetricFilter.ALL)
            .build();

reporter.start(value, unit);

但是 datadog 中没有主机(服务器名称)参数。如何为指标添加主机(服务器名称)以在 datadog 控制面板中过滤它们?默认数据狗代理的指标具有服务器名称属性。

4

1 回答 1

1

只需设置主机名org.coursera.metrics.datadog.DatadogReporter.Builder

.withHost(InetAddress.getLocalHost().getCanonicalHostName())
于 2015-11-27T16:39:07.073 回答