TrackerSessions
Stores user session metadata. This table supports authentication tracking and session governance.
Columns
| Name | Type | ReadOnly | Description |
| Active | Bool | False |
A Boolean field that returns a value of 'true' when the session is currently active. It returns a value of 'false' when the session has ended or is inactive. |
| Client_Ip | String | False |
The IP address of the client device that is associated with this user session. This value supports auditing, security monitoring, and usage tracking. |
| Date_End | Datetime | False |
The date and time when the session ended, if it is applicable. This value indicates the close of the tracked activity period. |
| Date_Start | Datetime | False |
The date and time when the session began. This value defines the start of the tracked activity period. |
| Deleted | Bool | False |
A Boolean field that returns a value of 'true' when this session tracking record is marked as deleted. It returns a value of 'false' when the record remains active and available. |
| Id [KEY] | Int | True |
The unique identifier (Id) for this session tracking record. This value is used to reference, analyze, and correlate user session activity. |
| Seconds | Int | True |
The total duration of the session, measured in seconds. This value is used for activity analysis and performance monitoring. |
| Session_Id | String | False |
The Id of the session within the application. This value links the record to logs, events, and usage actions recorded during the session. |
| User_Id | String | False |
The Id of the user who initiated the session. This value supports auditing, user activity tracking, and security review. |