119120121122123124125126127
* * @param key the name of the counter * @param delta the ammount to increment */ public void incCounters(String key, long delta) { MutableCounterLong counter = metricsRegistry.getLongCounter(key, 0l); counter.incr(delta); }
121122123124125126127128129