使用 PrometheusMeterRegistry 抓取

scrape with PrometheusMeterRegistry

我有以下 servlet:

@Servlet(\path : String -> path.matches("/metrics"))
class MetricsServlet_De extends HttpServlet {
  private var prometheusMeterRegistry : PrometheusMeterRegistry

  override function init() {
    configureMetrics()
  }

  protected override function doGet(request : HttpServletRequest, response : HttpServletResponse) {
    response.ContentType = TextFormat.CONTENT_TYPE_004
    response.setStatus(HttpServletResponse.SC_OK)

    prometheusMeterRegistry.scrape(response.Writer)
  }

  
  private function configureMetrics() : PrometheusMeterRegistry {
    prometheusMeterRegistry = new PrometheusMeterRegistry(PrometheusConfig.DEFAULT);
    new ClassLoaderMetrics().bindTo(prometheusMeterRegistry)
    new JvmMemoryMetrics().bindTo(prometheusMeterRegistry)
    new JvmGcMetrics().bindTo(prometheusMeterRegistry)
    new ProcessorMetrics().bindTo(prometheusMeterRegistry)
    new JvmThreadMetrics().bindTo(prometheusMeterRegistry)

    var toDoubleFunction : ToDoubleFunction<GameMetrics> = \status -> status.GameFinished
    Gauge.builder("game_status", new GameMetrics(), toDoubleFunction)
        .description("Return Game status")
        .register(prometheusMeterRegistry)

    return prometheusMeterRegistry
  }


}

第一次调用 Servlet 时,会调用 GameMetrics.GameFinished() 并正确显示一个值。 对于 servlet 的所有后续调用,不再调用 GameMetrics.GameFinished() 并返回 NaN。

我不知道我做错了什么。

此致

尝试保留对您在 Gauges 中用作状态对象的实例的引用(例如:私有最终字段)(即:GameMetrics)。

仪表使用 WeakReference 来引用它们的状态对象,这不会阻止它们被 GC 收集。所以我认为在你的情况下发生的事情是 GC 收集 GameMetrics 实例所以它将为空,请参阅文档:https://micrometer.io/docs/concepts#_why_is_my_gauge_reporting_nan_or_disappearing