问题描述
我正在尝试使用Quarkus MP-Metrics。在一个简单的API中,我有一个指标,如下所示:
@Path("/count")
@GET
@Gauge(unit = MetricUnits.NONE,name = "customersNumberGauge",description = "Number of customers in the inventory")
public int getCustomersNumber()
{
return customerService.getCustomers().size();
}
我也有一些单元测试,例如:
@Test
public void testGetCustomerById()
{
get("/customers/1").then().statusCode(200).body("firstName",equalTo("Robert"));
assertMetricValue("fr.simplex_software.aws.lambda.quarkus.CustomerResource.customerByIdCount",1);
get("/customers/1").then().statusCode(200).body("firstName",2);
}
失败,例外:
java.lang.IllegalArgumentException: A metric with metricID MetricID{name='fr.simplex_software.aws.lambda.quarkus.CustomerResource.customersNumberGauge',tags=[]} already exists
如果我注释掉@Gauge批注,则一切正常。值得注意的是,通过这样做,我正完全遵循Quarkus快速入门。
非常感谢您的帮助。 亲切的问候, 西摩
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)