在使用 jmxtrans 为 Apache Kafka 设置到 ElasticSearch 的指标报告时,我们编写了一个配置文件来查询大约 50 个指标。
查询如下:
{
"obj" : "kafka.server:type=BrokerTopicMetrics,name=TotalFetchRequestsPerSec",
"outputWriters" : [ {
"@class" : "com.googlecode.jmxtrans.model.output.elastic.ElasticWriter",
"connectionUrl": "http://elasticHost:9200"
}]
}
既然有这么多都写到同一个目的地,配置文件中有没有办法缩短这个?
非常感谢任何帮助。