buffer.append("," + ManagementConstants.OPERATION_NAME_PROP + "=" + operationName);
String operationCounterName = buffer.toString();
try {
ObjectName serviceCounter =
new ObjectName(serviceCounterName);
cr.increaseCounter(serviceCounter, mhtr);
ObjectName operationCounter = new ObjectName(operationCounterName);
cr.increaseCounter(operationCounter, mhtr);
} catch (Exception exception) {
LOG.log(Level.WARNING, "CREATE_COUNTER_OBJECTNAME_FAILED", exception);
}