ApexLog
Records execution logs for Apex transactions, debugging, and performance monitoring in Salesforce.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex debug log. | |
| LogUserId | String | True |
ID of the user who generated the log. | |
| LogLength | Int | True |
Size of the log file in bytes. | |
| LastModifiedDate | Datetime | True |
Timestamp of when the log was last updated. | |
| Request | String | True |
The type of request that generated the log, such as API call or UI interaction. | |
| Operation | String | True |
The specific operation that was performed, such as login, query, or DML. | |
| Application | String | True |
Name of the application or context where the request originated. | |
| Status | String | True |
Execution status of the request, such as Success or Failed. | |
| DurationMilliseconds | Int | True |
Total time taken to execute the request, measured in milliseconds. | |
| SystemModstamp | Datetime | True |
System-generated timestamp used for replication and synchronization. | |
| StartTime | Datetime | True |
Time at which the execution that generated the log began. | |
| Location | String | True |
Source location of the request, such as a Salesforce page or API call origin. |