jmxtrans / jmxtrans-agent

Java Agent based JMX metrics exporter.
MIT License
179 stars 110 forks source link

Add counter type support to invocations #134

Closed packysauce closed 6 years ago

packysauce commented 6 years ago

Invocations were always getting counted as counters because writeInvocation always ended up as writeQueryResult with null passed as the type. I've short circuited that and wired up the 'type' parameter similar to query.

I'm not married to the change to ConsoleOutputWriter to log what type the metric is.

cyrille-leclerc commented 6 years ago

Thanks @packysauce !