Profiler Procedures
Procedure | Description | Example |
---|
profiler.setheartbeat(beat int) | Set heart beat performance tracing | call profiler.setheartbeat(100); |
profiler.setlimit(lim integer) | Set profiler limit | call profiler.setlimit(500); |
profiler.start() | Start offline performance profiling | call profiler.start(); |
profiler.stop() | Stop offline performance profiling | call profiler.stop(); |
You must include the profiler.
prefix for these procedures and functions (see examples) in order to work properly.
Function | Return type | Description | Example | Result |
---|
profiler.getlimit() | int | Get profiler limit | select profiler.getlimit(); | 500 |