Skip to main content

Thread Details

The Thread details section provides a detailed view of all active threads currently running on the backend system. This will be useful for monitoring, dubbing or optimizing application performance. To access such details the user will be able to see some critical thread results like id, name, state, and priority which is beneficial in managing any issues in the system.

This document outlines the steps to access thread details, explains the key attributes displayed, and provides answers to frequently asked questions (FAQs) to assist users in effectively utilizing this feature.


Accessing Thread Details

  • Go to the Login > About > Thread Details.

  • Locate the Thread Details section, where comprehensive information about backend threads is displayed.

  • The Thread Details section includes the following parameters:

    AttributeDescription
    IDUnique identifier for each thread.
    NameThe name assigned to the thread, which helps in identifying its function or purpose.
    AliveIndicates whether the thread is currently active (Yes) or inactive (No).
    DaemonSpecifies if the thread is a daemon thread (Yes) or a user thread (No).
    InterruptedShows whether the thread has been interrupted.
    PriorityThe priority level of the thread, determining its execution precedence.
    StateThe current state of the thread (e.g., RUNNING, WAITING, TERMINATED)

    image-1


FAQs

Q:1 Can I modify thread attributes from this section?

Ans: No, the Thread Details section is read-only. It is designed for monitoring purposes only. Any thread modifications must be performed programmatically in the backend code.

Q:2 What does the "Interrupted" column signify?

Ans: The "Interrupted" column indicates whether a thread has been interrupted, which typically occurs when an exception or external signal halts its execution.