Salesforce Agentforce Event Logsare stored in the ConversationDefinitionEventLog object or entity. So, query it to get the Salesforce Agentforce Agent logs.
“Enrich event logs with conversation data” should be enabled so that Salesforce Agentforce Agent logs can be tracked.
Sample SOQL:
SELECT ConversationDefinitionId, CreatedById,
CreatedDate, DialogDefinitionId,
EventDateTime, EventLabel,
EventTarget, EventTargetType,
EventTimestamp, EventUuid, Id,
IsDeleted, LastModifiedById,
LastModifiedDate, LogLevel, LogType,
ParentId, PreviousEventLogId,
PreviousEventLogUuid, StepType
FROM ConversationDefinitionEventLog
WHERE CreatedDate = TODAY