Skip to main content
Version: 7.9

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

None

Returns

String - The dump of the current running JVM.

Scope

All

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()