/** Thread safe created increment of counterName. (Slow) */ public static void safeIncrBy(String counterName, int incVal) { com.twitter.heron.api.metric.GlobalMetrics.safeIncrBy(counterName, incVal); }
/** Thread safe created increment of counterName. (Slow) */ public static void safeIncr(String counterName) { com.twitter.heron.api.metric.GlobalMetrics.safeIncr(counterName); }