Hi,
we are using dropwizard metric component to generate metrics for our application. We have a requirement to add some attributes to the MBeans, this is what it would look like:
name="com.my.domain:name=
my.bean.name,type=myBeanType" if we were to create actual MBean objects.
When working with dropwizard/codahale metric we would typically register new MBean by invoking something like metricRegistry.meter("
my.bean.name") where registry is created using domain "com.my.domain".
How do we add additional attributes, in our example it would be "type=myBeanType"?
Thanks,
Nikolay