codahale metrics aren't being recorded

345 Views Asked by At

I'm experimenting with the codahale metrics and metrics-spring packages. I've been unable to get the metrics recorded.

Function Call

@Counted
public Response getSomething(@Context final HttpServletRequest request) {
  return Response.ok(doWork()).build();
}

metrics-spring.xml

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:metrics="http://www.ryantenney.com/schema/metrics"
  xsi:schemaLocation="
           http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.ryantenney.com/schema/metrics
           http://www.ryantenney.com/schema/metrics/metrics-3.0.xsd">

  <!-- Registry should be defined in only one context XML file -->
  <metrics:metric-registry id="metrics"/>

  <!-- annotation-driven must be included in all context files -->
  <metrics:annotation-driven metric-registry="metrics"/>

  <!-- (Optional) Registry should be defined in only one context XML file -->
  <metrics:reporter type="console" metric-registry="metrics" period="10s"/>
</beans>

beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation=" http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">

  <import resource="classpath:META-INF/cxf/cxf.xml"/>
  <import resource="classpath:metrics-spring.xml"/>
...snip....

Output

When I run this in a war file and hit the endpoint, the counter isn't incremented. It stays at 0

5/19/15 5:01:48 PM =============================================================

-- Counters --------------------------------------------------------------------
package.getSomething
             count = 0

It seems like everything is wired together correctly. Data is getting dumped to the console and it knows about the counter. What am I doing wrong?

0

There are 0 best solutions below