*/
public void stopNestedProfiler(String parentProfilerName, String nestedProfilerName) {
Stack<Profiler> profilers = threadLocal.get();
final Profiler profiler = profilers.pop();
if (profiler.getName().equals(nestedProfilerName)) {
profiler.stop();
}
}
public Profiler startProfiler(String profilerName) {
final ProfilerRegistry profilerRegistry = ProfilerRegistry.getThreadContextInstance();