[ https://issues.apache.org/jira/browse/GERONIMO-6658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16704718#comment-16704718 ]
ASF GitHub Bot commented on GERONIMO-6658: ------------------------------------------ asfgit closed pull request #2: GERONIMO-6658 - application/json doesn't return correct payload URL: https://github.com/apache/geronimo-metrics/pull/2 This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/jaxrs/MetricsEndpoints.java b/geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/jaxrs/MetricsEndpoints.java index 4293fd5..ddda156 100644 --- a/geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/jaxrs/MetricsEndpoints.java +++ b/geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/jaxrs/MetricsEndpoints.java @@ -19,11 +19,13 @@ import static java.util.Collections.emptyMap; import static java.util.Collections.singletonMap; import static java.util.Optional.ofNullable; +import static java.util.function.Function.identity; import static java.util.stream.Collectors.joining; import static java.util.stream.Collectors.toMap; import java.util.Collections; import java.util.Map; +import java.util.function.Function; import java.util.stream.Stream; import javax.ws.rs.GET; @@ -133,7 +135,7 @@ public Object getJson(@PathParam("registry") final String registry, @Context final SecurityContext securityContext, @Context final UriInfo uriInfo) { securityValidator.checkSecurity(securityContext, uriInfo); - return singleEntry(name, findRegistry(registry)); + return singleEntry(name, findRegistry(registry), this::map); } @GET @@ -147,8 +149,7 @@ public String getText(@PathParam("registry") final String registry, final MetricRegistry metricRegistry = findRegistry(registry); return prometheus.toText( metricRegistry, registry, - singleEntry(name, metricRegistry)) - .toString(); + singleEntry(name, metricRegistry, identity())).toString(); } @OPTIONS @@ -175,9 +176,10 @@ public Object getMetadata(@PathParam("registry") final String registry, .collect(toMap(Map.Entry::getKey, e -> mapMeta(e.getValue()))); } - private Map<String, Metric> singleEntry(final String name, final MetricRegistry metricRegistry) { + private <T> Map<String, T> singleEntry(final String name, final MetricRegistry metricRegistry, + final Function<Metric, T> metricMapper) { return ofNullable(metricRegistry.getMetrics().get(name)) - .map(metric -> singletonMap(name, metric)) + .map(metric -> singletonMap(name, metricMapper.apply(metric))) .orElseGet(Collections::emptyMap); } diff --git a/geronimo-metrics-common/src/test/java/org/apache/geronimo/microprofile/metrics/common/json/JsonMetricTest.java b/geronimo-metrics-common/src/test/java/org/apache/geronimo/microprofile/metrics/common/json/JsonMetricTest.java new file mode 100644 index 0000000..554f6ac --- /dev/null +++ b/geronimo-metrics-common/src/test/java/org/apache/geronimo/microprofile/metrics/common/json/JsonMetricTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.geronimo.microprofile.metrics.common.json; + +import org.apache.geronimo.microprofile.metrics.common.RegistryImpl; +import org.apache.geronimo.microprofile.metrics.common.jaxrs.MetricsEndpoints; +import org.apache.geronimo.microprofile.metrics.common.jaxrs.SecurityValidator; +import org.apache.geronimo.microprofile.metrics.common.prometheus.PrometheusFormatter; +import org.eclipse.microprofile.metrics.Gauge; +import org.junit.Test; + +import javax.ws.rs.core.SecurityContext; +import javax.ws.rs.core.UriInfo; + +import static java.util.Collections.singletonMap; +import static org.junit.Assert.assertEquals; + +public class JsonMetricTest { + + @Test + public void testJsonGaugeValue() { + final RegistryImpl registry = new RegistryImpl(); + registry.register("foo", (Gauge<Long>) () -> 1L); + + final MetricsEndpoints endpoints = new MetricsEndpoints(); + endpoints.setApplicationRegistry(registry); + endpoints.setPrometheus(new PrometheusFormatter()); + endpoints.setSecurityValidator(new SecurityValidator() { + @Override + public void checkSecurity(final SecurityContext securityContext, final UriInfo uriInfo) { + // no-op + } + }); + final Object json = endpoints.getJson("application", "foo", null, null); + assertEquals(singletonMap("foo", 1L), json); + } +} ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Issue @Gauge Accept: application/json > ------------------------------------- > > Key: GERONIMO-6658 > URL: https://issues.apache.org/jira/browse/GERONIMO-6658 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Reporter: Ivan Junckes Filho > Priority: Major > > Trying access a gauge /metrics/application/<metric-name> with "Accept: > application/json" I get the error below: > > 21-Nov-2018 17:24:08.811 WARNING [http-nio-8080-exec-4] > org.apache.cxf.jaxrs.model.OperationResourceInfoComparator.compare Both > org.apache.geronimo.microprofile.metrics.common.jaxrs.MetricsEndpoints#getJson > and > org.apache.geronimo.microprofile.metrics.jaxrs.CdiMetricsEndpoints#getJson > are equal candidates for handling the current request which can lead to > unpredictable results > 21-Nov-2018 17:26:52.183 SEVERE [http-nio-8080-exec-4] > org.apache.cxf.jaxrs.utils.JAXRSUtils.logMessageHandlerProblem Problem with > writing the data, class java.util.Collections$SingletonMap, ContentType: > application/json > 21-Nov-2018 17:26:52.184 WARNING [http-nio-8080-exec-4] > org.apache.cxf.phase.PhaseInterceptorChain.doDefaultLogging Interceptor for > {[http://jaxrs.common.metrics.microprofile.geronimo.apache.org/}MetricsEndpoints|http://jaxrs.common.metrics.microprofile.geronimo.apache.org/%7DMetricsEndpoints] > has thrown exception, unwinding now > org.apache.cxf.interceptor.Fault > at > org.apache.cxf.jaxrs.interceptor.JAXRSOutInterceptor.handleWriteException(JAXRSOutInterceptor.java:396) > at > org.apache.cxf.jaxrs.interceptor.JAXRSOutInterceptor.serializeMessage(JAXRSOutInterceptor.java:272) > at > org.apache.cxf.jaxrs.interceptor.JAXRSOutInterceptor.processResponse(JAXRSOutInterceptor.java:122) > at > org.apache.cxf.jaxrs.interceptor.JAXRSOutInterceptor.handleMessage(JAXRSOutInterceptor.java:84) > at > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) > at > org.apache.cxf.interceptor.OutgoingChainInterceptor.handleMessage(OutgoingChainInterceptor.java:90) > at > org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) > at > org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) > at > org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267) > at > org.apache.openejb.server.cxf.rs.CxfRsHttpListener.doInvoke(CxfRsHttpListener.java:253) > at > org.apache.tomee.webservices.CXFJAXRSFilter.doFilter(CXFJAXRSFilter.java:94) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) > at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) > at org.apache.openejb.server.httpd.EEFilter.doFilter(EEFilter.java:65) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) > at org.apache.tomee.microprofile.jwt.MPJWTFilter.doFilter(MPJWTFilter.java:64) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) > at > org.apache.geronimo.microprofile.opentracing.microprofile.server.OpenTracingFilter.doFilter(OpenTracingFilter.java:126) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:199) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.java:44) > at > org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) > at > org.apache.tomee.catalina.OpenEJBSecurityListener$RequestCapturer.invoke(OpenEJBSecurityListener.java:97) > at > org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:668) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) > at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) > at > org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) > at > org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:770) > at > org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) > at > org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) > at > java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) > at > java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) > at > org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) > at java.lang.Thread.run(Thread.java:748) > Caused by: java.lang.StackOverflowError -- This message was sent by Atlassian JIRA (v7.6.3#76005)