- Introduction to Database Access
- Setting Up Database Access
- Schema - System-Level Tables
- Schema - Intrusion Event Tables
- Schema - Statistics Tracking Tables
- Schema - Discovery and Network Map Tables
- Schema - Connection Log Tables
- Schema - User Activity Tables
- Schema - Correlation Logs
- Schema - File Event Tables
- Deprecated Tables
Schema: User Activity Tables
This chapter contains information on the schema and supported joins for user activity and identity events. The Firepower System can detect user activity on your network by tracking various types of user logins, including LDAP, POP3, IMAP, SMTP, AIM, and SIP.
For more information, see the sections listed in the following table.
|
|
|
---|---|---|
User discovery events, which communicate the details of user activity on your network. |
discovered_users
The discovered_users
table contains detailed information about each user detected by the system.
The discovered_users
table supersedes the deprecated rua_user
table starting with Version 5.0 of the Firepower System.
For more information, see the following sections:
discovered_users Fields
The following table describes the fields you can access in the discovered_users
table.
discovered_users Joins
The following table describes the joins you can perform on the rua_user
table.
|
|
---|---|
discovered_users Sample Query
The following query returns up to 25 discovered user records that were generated since a specified date and time.
SELECT user_id, ip_address, email, name, last_seen_sec, last_updated_sec
WHERE last_seen_sec >= UNIX_TIMESTAMP("2011-10-01 00:00:00")
user_discovery_event
The user_discovery_event
table contains a record for each user discovery event.
Note that starting in Version 5.0, the Firepower System records the detection of user activity at the managed device level, no longer by detection engine. The detection_engine_name
and detection_engine_uuid
fields in this table have been replaced by the sensor_name
and sensor_uuid
fields respectively. Queries on these fields will return information about the managed device that generated the user discovery event.
For more information, see the following sections:
user_discovery_event Fields
The following table describes the fields you can access in the user_discovery_event
table.
user_discovery_event Joins
The following table describes the joins you can perform on the user_discovery_event
table.
|
|
---|---|
user_discovery_event Sample Query
The following query returns up to 25 user event records generated by a selected managed device since a particular date and time.
SELECT event_time_sec, ipaddr, sensor_name, event_type, user_name, user_last_seen_sec, user_last_updated_sec
WHERE sensor_name = sensor_name
AND user_last_seen_sec >= UNIX_TIMESTAMP("2011-10-01 00:00:00") ORDER BY event_type ASC