Contains the data provided by FusionReactor cputhread log files.
Column Name | Data Type | Unique | Nullable | Description |
---|---|---|---|---|
ID | bigint | x | The primary key column | |
SERVER | smallint | The server ID as stored in the ServerMap | ||
DT | bigint | The number of milliseconds since the epoch. Timezone adjustments can be made with the timezone attribute of the DataCollector that provided the data. | ||
VERSION | smallint | The version number of this log entry. | ||
SRVSTARTTS | bigint | The startup time of the application server in milliseconds (ms) since epoch. | ||
THREADNAME | varchar(255) | The name of the thread. | ||
THREADID | bigint | The thread ID. | ||
CPUTIME | bigint | The amount of time a thread has been alive for. | ||
USERTIME | bigint | The amount of time that a thread has executed in user mode. | ||
CPUTIMEDELTA | bigint | The difference between the the current CPU Time and the previous CPU Time attributes. Current being the thread one in front of the previous in the log entries. | ||
USERTIMEDELTA | bigint | The difference between the the current User Time and the previous User Time attributes. Current being the thread one in front of the previous in the log entries. | ||
BLOCKEDCOUNT | bigint | The number of times that the thread has been in the blocked state. | ||
BLOCKEDTIME | bigint | The total amount of time the thread has been in the blocked state. | ||
BLOCKEDCOUNTDELTA | bigint | The difference between the amount of times the current thread has been in the blocked state and the previous thread has been in the blocked state. | ||
BLOCKEDTIMEDELTA | bigint | The time difference between the time period the current thread has been in the blocked state and the previous thread has been in the blocked state. | ||
LOCKNAME | varchar(255) | Monitor lock that the thread is associated with. | ||
LOCKOWNERID | bigint | The ID of the thread that holds the monitor lock. | ||
LOCKOWNERNAME | varchar(255) | The name of the thread that holds the monitor lock. | ||
WAITEDCOUNT | bigint | The number of times the thread has been in the waiting state. | ||
WAITEDTIME | bigint | The total amount of time the thread has been in the waiting state. | ||
WAITEDCOUNTDELTA | bigint | The difference between the amount of times the current thread has been in the waiting state and the previous thread has been in the waiting state. | ||
WAITEDTIMEDELTA | bigint | The time difference between the time period the current thread has been in the waiting state and the previous thread has been in the waiting state. | ||
THREADSTATE | varchar(35) | The thread state. States include new, runnable, blocked, waiting, timed_waiting and terminated. | ||
SAMPLEPERIOD | bigint | The difference in time between the current resource probe being triggered and the previous resource ?probe being triggered. | ||
RATE | real | x |