Fired each time a process is created, providing the corrseponding Process
object.
|process|: Details of the process that was created. Metrics requiring
aggregation over time will not be populated in the object.
Fired each time a process is terminated, providing the type of exit.
|processId|: The ID of the process that exited.
|exitType|: The type of exit that occurred for the process - normal,
abnormal, killed, crashed. Only available for renderer processes.
|exitCode|: The exit code if the process exited abnormally. Only
available for renderer processes.
Fired each time a process becomes unresponsive, providing the
corrseponding Process object.
|process|: Details of the unresponsive process. Metrics requiring
aggregation over time will not be populated in the object. Only available
for renderer processes.
Fired each time the Task Manager updates its process statistics,
providing the dictionary of updated Process objects, indexed by process
ID.
|processes|: A dictionary of updated Process objects for each live
process in the browser, indexed by process ID. Metrics requiring
aggregation over time will be populated in each Process object.
Fired each time the Task Manager updates its process statistics,
providing the dictionary of updated Process objects, indexed by process
ID. Identical to onUpdate, with the addition of memory usage details
included in each Process object. Note, collecting memory usage
information incurs extra CPU usage and should only be listened for when
needed.
|processes|: A dictionary of updated Process objects for each live
process in the browser, indexed by process ID. Memory usage details will
be included in each Process object.
Retrieves the process information for each process ID specified.
|processIds|: The list of process IDs or single process ID for which
to return the process information. An empty list indicates all processes
are requested.
|includeMemory|: True if detailed memory usage is required. Note,
collecting memory usage information incurs extra CPU usage and should
only be queried for when needed.
Terminates the specified renderer process. Equivalent to visiting
about:crash, but without changing the tab's URL.
|processId|: The ID of the process to be terminated.