Home | History | Annotate | Download | only in profiler

Lines Matching refs:profiler

25 package org.slf4j.profiler;
43 + Profiler [DEMO]
45 |---+ Profiler [SORT_AND_PRUNE]
58 // create a profiler called "DEMO"
59 Profiler profiler = new Profiler("DEMO");
61 // register this profiler in the thread context's profiler registry
63 profiler.registerWith(profilerRegistry);
66 profiler.start("RANDOM");
71 // create and start a nested profiler called "SORT_AND_PRUNE"
73 // profiler, and the previous registration of the parent profiler,
74 // this nested profiler will be automatically registered
75 // with the thread context's profiler registry
76 profiler.startNested(SortAndPruneComposites.NESTED_PROFILER_NAME);
82 profiler.stop().print();