Dashboards question

Hello Team,

Just a generic question,

What is system thread dashboard?
If high, what happens?
Normal is?

What is system exception dispatches dashboard?
If high, what happens?
Normal is?

system threads:

Threads

Data type: uint32

Access type: Read-only

Qualifiers: CookingType (“PERF_COUNTER_RAWCOUNT”) , Counter (“Threads”) , PerfTimeStamp (“Timestamp_PerfTime”) , PerfTimeFreq (“Frequency_PerfTime”)

Number of threads in the computer at the time of data collection. This is an instantaneous count, not an average over the time interval. A thread is the basic executable entity that can execute instructions in a processor.

In summary, while high thread counts can be normal in certain scenarios, they can also indicate inefficiencies, resource contention, or concurrency issues that may need to be addressed to ensure optimal system performance and stability. Monitoring thread counts alongside other system metrics and analyzing application behavior can help diagnose and resolve underlying issues.

exception dispatches:

ExceptionDispatchesPerSec

Data type: uint32

Access type: Read-only

Qualifiers: CookingType (“PERF_COUNTER_COUNTER”) , Counter (“ExceptionDispatchesPerSec”) , PerfTimeStamp (“Timestamp_PerfTime”) , PerfTimeFreq (“Frequency_PerfTime”)

Rate of exceptions dispatched by the system. This property displays the difference between the values observed in the last two samples, divided by the duration of the sample interval.

When an exception occurs, the operating system needs to handle it appropriately. The “ExceptionDispatchesPerSec” counter tracks the frequency at which these exceptions are dispatched by the operating system. Monitoring this counter can provide insights into the stability and performance of the system, as a high number of exceptions dispatched per second may indicate issues that need to be addressed, such as software bugs, hardware failures, or resource constraints.