Class CounterHelper
- java.lang.Object
-
- org.nuxeo.runtime.management.counters.CounterHelper
-
@Deprecated(since="11.4") public class CounterHelper extends Object
Deprecated.since 11.4: use dropwizard metrics counter insteadDummy helper class to be used by code that updates the counters to avoid having to do the service lookup- Author:
- Tiry ([email protected])
-
-
Field Summary
Fields Modifier and Type Field Description protected static CounterManagercmDeprecated.
-
Constructor Summary
Constructors Constructor Description CounterHelper()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static voiddecreaseCounter(String counterName)Deprecated.static voiddecreaseCounter(String counterName, long value)Deprecated.static voidincreaseCounter(String counterName)Deprecated.static voidincreaseCounter(String counterName, long value)Deprecated.static voidsetCounterValue(String counterName, long value)Deprecated.
-
-
-
Field Detail
-
cm
protected static CounterManager cm
Deprecated.
-
-
Method Detail
-
increaseCounter
public static void increaseCounter(String counterName)
Deprecated.
-
increaseCounter
public static void increaseCounter(String counterName, long value)
Deprecated.
-
setCounterValue
public static void setCounterValue(String counterName, long value)
Deprecated.
-
decreaseCounter
public static void decreaseCounter(String counterName)
Deprecated.
-
decreaseCounter
public static void decreaseCounter(String counterName, long value)
Deprecated.
-
-