Class Perflog

java.lang.Object
com.pnfsoftware.jeb.core.Perflog

public class Perflog extends Object
Performance counters, reserved for internal debug use.
  • Method Details

    • getCounterNames

      public static Set<String> getCounterNames()
    • getGlobalCounters

      public static ReferenceCounter<String> getGlobalCounters()
    • getFineGrainedCounters

      public static Map<String,ReferenceCounter<String>> getFineGrainedCounters()
    • getFineGrainedCounter

      public static ReferenceCounter<String> getFineGrainedCounter(String key)
    • isEmpty

      public static boolean isEmpty()
    • reset

      public static void reset()
    • reset

      public static void reset(String key)
    • count

      public static void count()
      A method that wish to record its call should call count. Do not wrap this method in utility code. The source method must call count directly.

      Usage: "com.pnfsoftware.jeb.core.Perflog.count(); //[<:DEBUG]" at method entry point. Results can be seen in "Internal" menu in UI.