system.util.threadDump
This function is used in Python Scripting.
Description​
Creates a thread dump of the current running JVM.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.util.threadDump()
Parameters​
Nothing
Returns​
String - The dump of the current running JVM.
Scope​
Gateway, Vision Client, Perspective Session
Code Examples​
Example #1
# This script will take a thread dump of the current JVM, and write it to a Text Area component.
event.source.parent.getComponent('Text Area').text = system.util.threadDump()