Profiler Procedures

ProcedureDescriptionExample
profiler.setheartbeat(beat int)Set heart beat performance tracingcall profiler.setheartbeat(100);
profiler.setlimit(lim integer)Set profiler limitcall profiler.setlimit(500);
profiler.start()Start offline performance profilingcall profiler.start();
profiler.stop()Stop offline performance profilingcall profiler.stop();

You must include the profiler. prefix for these procedures and functions (see examples) in order to work properly.

FunctionReturn typeDescriptionExampleResult
profiler.getlimit()intGet profiler limitselect profiler.getlimit();500