1

是否可以在 JMXFetch 中更改 JMX 属性名称,以便在 DataDog 中显示不同的名称?

我目前有以下内容:

- include:
    domain: data
    attribute:
      - success
      - error

这将在 DataDog 中报告两个指标:

jmx.data.success
jmx.data.error

是否可以在 yaml 脚本中将其重命名为:

jmx.com.abc.reporting.successCount
jmx.com.abc.reporting.errorCount

没有原始名称出现在 DataDog 中?

4

1 回答 1

0

很有可能,只要使用属性过滤器的别名属性即可:

- include:
    domain: data
    attribute:
      success:
        alias: jmx.com.abc.reporting.successCount
      error:
        alias: jmx.com.abc.reporting.errorCount
于 2016-12-19T10:42:07.520 回答