配置DropWizard以在应用程序HTTP连接器上提供指标

时间:2015-11-12 16:29:21

标签: dropwizard

DropWizard传统上在管理端口上提供指标,例如8081,例如808。 http://localhost:8081/metrics和应用程序资源在例如8080.两个端口号都是可配置的,我以前将它们配置为相同。

在0.7.x中更改配置结构后,如何将度量标准配置为与应用程序显示在同一端口上?我不介意管理端口上提供的其他内容是否移动。

1 个答案:

答案 0 :(得分:0)

将服务器类型配置为' simple'将允许应用程序和管理站点在相同的端口和HTTP连接器上运行,这应该工作:

server:
  type: simple
  applicationContextPath: /application
  adminContextPath: /admin
  connector:
    type: http
    port: 8080

这将导致指标在http://localhost:8080/admin/metrics处可用。有关详细信息,请参阅Dropwizard server configuration reference