My Metrics配置在我的dropwizard rest应用程序中是这样的(hello-world.yml)
metrics:
reporters:
- type: log
logger: metrics
markerName: <marker name>
这是一个SLF4J Reporter我把它放在我的YAML配置文件中。现在,当我想获取此值并在我的应用程序文件中使用它时。我看到的唯一选项是将其读作Map<String, List<Map<String, String>> metrics;
读取此配置并在dropwizard Application类中使用它的正确方法是什么。请帮帮我。
此问题与Dropwizard Yaml for graphite server configuration相同。但是再没有回答这个问题,因此通过创建一个新问题来试试我的运气。
答案 0 :(得分:2)
我在dropwizard用户中发布了这个问题并得到了答案。 https://groups.google.com/forum/#!topic/dropwizard-user/yxceCS1CEns
final ImmutableList<ReporterFactory> reporters = configuration.getMetricsFactory().getReporters();
final Slf4jReporterFactory slf4jReporterFactory = (Slf4jReporterFactory) reporters.get(0);
slf4jReporterFactory.getMarkerName();
slf4jReporterFactory.getLoggerName();