方法

static setEnabled(enabled) #

static beginEvent(profileName?, args?) #

beginEvent/endEvent for starting and then ending a profile within the same call stack frame

static endEvent() #

static beginAsyncEvent(profileName?) #

beginAsyncEvent/endAsyncEvent for starting and then ending a profile where the end can either occur on another thread or out of the current stack frame, eg await the returned cookie variable should be used as input into the endAsyncEvent call to end the profile

static endAsyncEvent(profileName?, cookie?) #

static counterEvent(profileName?, value?) #

counterEvent registers the value to the profileName on the systrace timeline

static attachToRelayProfiler(relayProfiler) #

Relay profiles use await calls, so likely occur out of current stack frame therefore async variant of profiling is used

static swizzleJSON() #

This is not called by default due to perf overhead but it's useful if you want to find traces which spend too much time in JSON.

static measureMethods(object, objectName, methodNames) #

Measures multiple methods of a class. For example, you can do: Systrace.measureMethods(JSON, 'JSON', ['parse', 'stringify']);

@param object @param objectName @param methodNames Map from method names to method display names.

static measure(objName, fnName, func) #

Returns an profiled version of the input function. For example, you can: JSON.parse = Systrace.measure('JSON', 'parse', JSON.parse);

@param objName @param fnName @param {function} func @return {function} replacement function


书籍推荐