我正在尝试从这里为风暴拓扑监控配置 Gumbo
网站上没有给出明确的示例或用法,需要澄清一下参数是什么以及在哪里添加上面网站上给出的代码
MonitorClient mclient = MonitorClient.forConfig(conf);
// There are multiple metric groups, each with multiple metrics.
// Components have names and multiple instances, each of which has an integer ID
mclient.declare(metricGroup,metric,task_id,component_id);
mclient.increment(metricGroup,metric, 1L , task_id);
TaskHook.registerTo(config);
现在我们需要为 MetricGroup、metric、task_id 和 component_id 提供什么值?如果需要从每个 Spout 和 Bolt 中找到它,我们该怎么做?这段代码应该放在哪里,是在提交拓扑之前在拓扑构建器中,还是在打开/准备方法下的单个 Spout/Bolt 类中或其他地方。感谢对此问题的任何帮助。