Profiles functions in JavaScript.
clearname
Removes all report data from the profiler.
name
String
(Optional) The name of the report to clear. If omitted, then all report data is cleared.
getAveragename
Returns the average amount of time (in milliseconds) that the function with the given name takes to execute.
name
String
The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.
getCallCountname
Returns the number of times that the given function has been called.
name
String
The name of the function whose data should be returned.
getFullReportReturns an object containing profiling data for all of the functions that were profiled. The object has an entry for each function and returns all information (min, max, average, calls, etc.) for each function.
getFunctionReportReturns an object containing profiling data for a single function. The object has an entry for min, max, avg, calls, and points).
getMaxname
Returns the maximum amount of time (in milliseconds) that the function with the given name takes to execute.
name
String
The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.
getMinname
Returns the minimum amount of time (in milliseconds) that the function with the given name takes to execute.
name
String
The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.
getOriginalname
Returns the uninstrumented version of a function/object.
name
String
The name of the function/object to retrieve.
getReportReturns an object containing profiling data for a single function. The object has an entry for min, max, avg, calls, and points).
instrumentname
method
Instruments a method to have profiling calls.
pausename
Pauses profiling information for a given name.
name
String
The name of the data point.
registerConstructorname
owner
Sets up a constructor for profiling, including all properties and methods on the prototype.
registerFunctionname
owner
registerPrototype
Sets up a function for profiling. It essentially overwrites the function with one that has instrumentation data. This method also creates an entry for the function in the profile report. The original function is stored on the container object.
name
String
The full name of the function including namespacing. This is the name of the function that is stored in the report.
owner
Object
(Optional) The object that owns the function. If the function isn't global then this argument is required. This could be the namespace that the function belongs to or the object on which it's a method.
registerPrototype
Boolean
(Optional) Indicates that the prototype should also be instrumented. Setting to true has the same effect as calling registerConstructor().
registerObjectname
owner
recurse
Sets up an object for profiling. It takes the object and looks for functions. When a function is found, registerMethod() is called on it. If set to recrusive mode, it will also setup objects found inside of this object for profiling, using the same methodology.
startname
Start profiling information for a given name. The name cannot be the name of a registered function or object. This is used to start timing for a particular block of code rather than instrumenting the entire function.
name
String
The name of the data point.
stopname
Stops profiling information for a given name.
name
String
The name of the data point.
unregisterFunctionname
Removes a constructor function from profiling. Reverses the registerConstructor() method.
name
String
The full name of the function including namespacing. This is the name of the function that is stored in the report.
unregisterFunctionname
Removes function from profiling. Reverses the registerFunction() method.
name
String
The full name of the function including namespacing. This is the name of the function that is stored in the report.
unregisterObjectname
recurse
Unregisters an object for profiling. It takes the object and looks for functions. When a function is found, unregisterMethod() is called on it. If set to recrusive mode, it will also unregister objects found inside of this object, using the same methodology.