Database Schema: Difference between revisions

From Edge Threat Management Wiki - Arista
Jump to navigationJump to search
No edit summary
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Reports]]
= Database Tables =
The global DB schema shows the tables and columns used for tracking all logged events in Untangle. These can be used to add conditions to reports and event logs and in the reporting system to create or edit reports.


== admin_logins ==  
== admin_logins ==  
Line 7: Line 6:
{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|login
|login
|Login
|text
|text
|The login name
|The login name
|-
|-
|local
|local
|Local
|boolean
|boolean
|True if it is a login attempt through a local process
|True if it is a login attempt through a local process
|-
|-
|client_addr
|client_addr
|Client Address
|inet
|inet
|The client IP address
|The client IP address
|-
|-
|succeeded
|succeeded
|Succeeded
|boolean
|boolean
|True if the login succeeded, false otherwise
|True if the login succeeded, false otherwise
|-
|-
|reason
|reason
|Reason
|character(1)
|character(1)
|The reason for the login (if applicable)
|The reason for the login (if applicable)
Line 43: Line 49:
{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|session_id
|session_id
|Session ID
|bigint
|bigint
|The session
|The session
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|end_time
|end_time
|End Time
|timestamp without time zone
|timestamp without time zone
|The time the session ended
|The time the session ended
|-
|-
|bypassed
|bypassed
|Bypassed
|boolean
|boolean
|True if the session was bypassed, false otherwise
|True if the session was bypassed, false otherwise
|-
|-
|entitled
|entitled
|Entitled
|boolean
|boolean
|True if the session is entitled to premium functionality
|True if the session is entitled to premium functionality
|-
|-
|protocol
|protocol
|Protocol
|smallint
|smallint
|The IP protocol of session
|The IP protocol of session
|-
|-
|icmp_type
|icmp_type
|ICMP Type
|smallint
|smallint
|The ICMP type of session if ICMP
|The ICMP type of session if ICMP
|-
|-
|hostname
|hostname
|Hostname
|text
|text
|The hostname
|The hostname of the local address
|-
|-
|username
|username
|Username
|text
|text
|The username
|The username associated with this session
|-
|-
|policy_id
|policy_id
|Policy ID
|smallint
|smallint
|The policy
|The policy
|-
|policy_rule_id
|Policy Rule ID
|smallint
|The ID of the matching policy rule (0 means none)
|-
|-
|c_client_addr
|c_client_addr
|Client-side Client Address
|inet
|inet
|The client-side client IP address
|The client-side client IP address
|-
|-
|c_server_addr
|c_server_addr
|Client-side Server Address
|inet
|inet
|The client-side server IP address
|The client-side server IP address
|-
|-
|c_server_port
|c_server_port
|Client-side Server Port
|integer
|integer
|The client-side server port
|The client-side server port
|-
|-
|c_client_port
|c_client_port
|Client-side Client Port
|integer
|integer
|The client-side client port
|The client-side client port
|-
|-
|s_client_addr
|s_client_addr
|Server-side Client Address
|inet
|inet
|The server-side client IP address
|The server-side client IP address
|-
|-
|s_server_addr
|s_server_addr
|Server-side Server Address
|inet
|inet
|The server-side server IP address
|The server-side server IP address
|-
|-
|s_server_port
|s_server_port
|Server-side Server Port
|integer
|integer
|The server-side server port
|The server-side server port
|-
|-
|s_client_port
|s_client_port
|Server-side Client Port
|integer
|integer
|The server-side client port
|The server-side client port
|-
|-
|client_intf
|client_intf
|Client Interface
|smallint
|smallint
|The client interface
|The client interface
|-
|-
|server_intf
|server_intf
|Server Interface
|smallint
|smallint
|The server interface
|The server interface
|-
|client_country
|Client Country
|text
|The client Country
|-
|client_latitude
|Client Latitude
|real
|The client Latitude
|-
|client_longitude
|Client Longitude
|real
|The client Longitude
|-
|server_country
|Server Country
|text
|The server Country
|-
|server_latitude
|Server Latitude
|real
|The server Latitude
|-
|server_longitude
|Server Longitude
|real
|The server Longitude
|-
|-
|c2p_bytes
|c2p_bytes
|From-Client Bytes
|bigint
|bigint
|The number of bytes the client sent to Untangle (client-to-pipeline)
|The number of bytes the client sent to Untangle (client-to-pipeline)
|-
|-
|p2c_bytes
|p2c_bytes
|To-Client Bytes
|bigint
|bigint
|The number of bytes Untangle sent to client (pipeline-to-client)
|The number of bytes Untangle sent to client (pipeline-to-client)
|-
|-
|s2p_bytes
|s2p_bytes
|From-Server Bytes
|bigint
|bigint
|The number of bytes the server sent to Untangle (client-to-pipeline)
|The number of bytes the server sent to Untangle (client-to-pipeline)
|-
|-
|p2s_bytes
|p2s_bytes
|To-Server Bytes
|bigint
|bigint
|The number of bytes Untangle sent to server (pipeline-to-client)
|The number of bytes Untangle sent to server (pipeline-to-client)
|-
|-
|filter_prefix
|filter_prefix
|Filter Block
|text
|text
|The network filter that blocked the connection
|The network filter that blocked the connection (filter,shield,invalid)
|-
|shield_blocked
|boolean
|True if the shield blocked the session, false otherwise
|-
|-
|firewall_blocked
|firewall_blocked
|Firewall Blocked
|boolean
|boolean
|True if Firewall blocked the session, false otherwise
|True if Firewall blocked the session, false otherwise
|-
|-
|firewall_flagged
|firewall_flagged
|Firewall Flagged
|boolean
|boolean
|True if Firewall flagged the session, false otherwise
|True if Firewall flagged the session, false otherwise
|-
|-
|firewall_rule_index
|firewall_rule_index
|Firewall Rule ID
|integer
|integer
|The matching rule in Firewall (if any)
|The matching rule in Firewall (if any)
|-
|-
|application_control_lite_protocol
|application_control_lite_protocol
|Application Control Lite Protocol
|text
|text
|The application protocol according to Application Control Lite
|The application protocol according to Application Control Lite
|-
|-
|application_control_lite_blocked
|application_control_lite_blocked
|Application Control Lite Blocked
|boolean
|boolean
|True if Application Control Lite blocked the session
|True if Application Control Lite blocked the session
|-
|-
|captive_portal_blocked
|captive_portal_blocked
|Captive Portal Blocked
|boolean
|boolean
|True if Captive Portal blocked the session
|True if Captive Portal blocked the session
|-
|-
|captive_portal_rule_index
|captive_portal_rule_index
|Captive Portal Rule ID
|integer
|integer
|The matching rule in Captive Portal (if any)
|The matching rule in Captive Portal (if any)
|-
|-
|application_control_application
|application_control_application
|Application Control Application
|text
|text
|The application according to Application Control
|The application according to Application Control
|-
|-
|application_control_protochain
|application_control_protochain
|Application Control Protochain
|text
|text
|The protochain according to Application Control
|The protochain according to Application Control
|-
|-
|application_control_category
|application_control_category
|Application Control Category
|text
|text
|The category according to Application Control
|The category according to Application Control
|-
|-
|application_control_blocked
|application_control_blocked
|Application Control Blocked
|boolean
|boolean
|True if Application Control blocked the session
|True if Application Control blocked the session
|-
|-
|application_control_flagged
|application_control_flagged
|Application Control Flagged
|boolean
|boolean
|True if Application Control flagged the session
|True if Application Control flagged the session
|-
|-
|application_control_confidence
|application_control_confidence
|Application Control Confidence
|integer
|integer
|True if Application Control confidence of this session's identification
|True if Application Control confidence of this session's identification
|-
|-
|application_control_ruleid
|application_control_ruleid
|Application Control Rule ID
|integer
|integer
|The matching rule in Application Control (if any)
|The matching rule in Application Control (if any)
|-
|-
|application_control_detail
|application_control_detail
|Application Control Detail
|text
|text
|The text detail from the Application Control engine
|The text detail from the Application Control engine
|-
|-
|bandwidth_control_priority
|bandwidth_control_priority
|Bandwidth Control Priority
|integer
|integer
|The priority given to this session
|The priority given to this session
|-
|-
|bandwidth_control_rule
|bandwidth_control_rule
|Bandwidth Control Rule ID
|integer
|integer
|The matching rule in Bandwidth Control rule (if any)
|The matching rule in Bandwidth Control rule (if any)
|-
|-
|ssl_inspector_ruleid
|ssl_inspector_ruleid
|SSL Inspector Rule ID
|integer
|integer
|The matching rule in HTTPS Inspector rule (if any)
|The matching rule in SSL Inspector rule (if any)
|-
|-
|ssl_inspector_status
|ssl_inspector_status
|SSL Inspector Status
|text
|text
|The status/action of the SSL session (INSPECTED/IGNORED/BLOCKED/UNTRUSTED/ABANDONED)
|The status/action of the SSL session (INSPECTED,IGNORED,BLOCKED,UNTRUSTED,ABANDONED)
|-
|-
|ssl_inspector_detail
|ssl_inspector_detail
|SSL Inspector Detail
|text
|text
|Additional text detail about the SSL connection (SNI, IP Address)
|Additional text detail about the SSL connection (SNI, IP Address)
|-
|local_addr
|Local Address
|inet
|The IP address of the local participant
|-
|remote_addr
|Remote Address
|inet
|The IP address of the remote participant
|-
|tags
|Tags
|text
|The tags on this session
|-
|-
|}
|}
Line 234: Line 332:




== penaltybox ==  
== session_minutes ==  
<section begin='penaltybox' />
<section begin='session_minutes' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|address
|session_id
|inet
|Session ID
|The IP address of the host
|bigint
|The session
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|c2s_bytes
|From-Client Bytes
|bigint
|The number of bytes the client sent
|-
|-
|reason
|s2c_bytes
|text
|From-Server Bytes
|The reason for the action
|bigint
|The number of bytes the server sent
|-
|-
|start_time
|start_time
|Start Time
|timestamp without time zone
|timestamp without time zone
|The time the client entered the penalty box
|The start time of the session
|-
|-
|end_time
|end_time
|End Time
|timestamp without time zone
|timestamp without time zone
|The time the client exited the penalty box
|The time the session ended
|-
|bypassed
|Bypassed
|boolean
|True if the session was bypassed, false otherwise
|-
|-
|time_stamp
|entitled
|timestamp without time zone
|Entitled
|The time of the event
|boolean
|True if the session is entitled to premium functionality
|-
|-
|}
|protocol
<section end='penaltybox' />
|Protocol
 
|smallint
 
|The IP protocol of session
== quotas ==
<section begin='quotas' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|icmp_type
|timestamp without time zone
|ICMP Type
|The time of the event
|smallint
|The ICMP type of session if ICMP
|-
|-
|address
|hostname
|inet
|Hostname
|The IP address of the host
|text
|The hostname of the local address
|-
|-
|action
|username
|integer
|Username
|The action (1=Quota Given, 2=Quota Exceeded)
|text
|The username associated with this session
|-
|-
|size
|policy_id
|bigint
|Policy ID
|The size of the quota
|smallint
|The policy
|-
|-
|reason
|policy_rule_id
|text
|Policy Rule ID
|The reason for the action
|smallint
|The ID of the matching policy rule (0 means none)
|-
|-
|}
|c_client_addr
<section end='quotas' />
|Client-side Client Address
 
|inet
 
|The client-side client IP address
== host_table_updates ==
<section begin='host_table_updates' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|address
|c_server_addr
|Client-side Server Address
|inet
|inet
|The IP address of the host
|The client-side server IP address
|-
|-
|key
|c_server_port
|text
|Client-side Server Port
|The key being updated
|integer
|The client-side server port
|-
|-
|value
|c_client_port
|text
|Client-side Client Port
|The new value for the key
|integer
|The client-side client port
|-
|-
|time_stamp
|s_client_addr
|timestamp without time zone
|Server-side Client Address
|The time of the event
|inet
|The server-side client IP address
|-
|-
|}
|s_server_addr
<section end='host_table_updates' />
|Server-side Server Address
 
|inet
 
|The server-side server IP address
== device_table_updates ==
<section begin='device_table_updates' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|mac_address
|s_server_port
|Server-side Server Port
|integer
|The server-side server port
|-
|s_client_port
|Server-side Client Port
|integer
|The server-side client port
|-
|client_intf
|Client Interface
|smallint
|The client interface
|-
|server_intf
|Server Interface
|smallint
|The server interface
|-
|client_country
|Client Country
|text
|text
|The MAC address of the device
|The client Country
|-
|client_latitude
|Client Latitude
|real
|The client Latitude
|-
|-
|key
|client_longitude
|text
|Client Longitude
|The key being updated
|real
|The client Longitude
|-
|-
|value
|server_country
|Server Country
|text
|text
|The new value for the key
|The server Country
|-
|-
|time_stamp
|server_latitude
|timestamp without time zone
|Server Latitude
|The time of the event
|real
|The server Latitude
|-
|-
|}
|server_longitude
<section end='device_table_updates' />
|Server Longitude
 
|real
 
|The server Longitude
== alerts ==
<section begin='alerts' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|filter_prefix
|timestamp without time zone
|Filter Block
|The time of the event
|-
|description
|text
|text
|The description from the alert rule.
|The network filter that blocked the connection (filter,shield,invalid)
|-
|-
|summary_text
|firewall_blocked
|text
|Firewall Blocked
|The summary text of the alert
|boolean
|True if Firewall blocked the session, false otherwise
|-
|-
|json
|firewall_flagged
|text
|Firewall Flagged
|The summary JSON representation of the event causing the alert
|boolean
|True if Firewall flagged the session, false otherwise
|-
|-
|}
|firewall_rule_index
<section end='alerts' />
|Firewall Rule ID
 
|integer
 
|The matching rule in Firewall (if any)
== settings_changes ==
<section begin='settings_changes' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|application_control_lite_protocol
|timestamp without time zone
|Application Control Lite Protocol
|The time of the event
|-
|settings_file
|text
|text
|The name of the file changed
|The application protocol according to Application Control Lite
|-
|-
|username
|application_control_lite_blocked
|Application Control Lite Blocked
|boolean
|True if Application Control Lite blocked the session
|-
|captive_portal_blocked
|Captive Portal Blocked
|boolean
|True if Captive Portal blocked the session
|-
|captive_portal_rule_index
|Captive Portal Rule ID
|integer
|The matching rule in Captive Portal (if any)
|-
|application_control_application
|Application Control Application
|text
|The application according to Application Control
|-
|application_control_protochain
|Application Control Protochain
|text
|text
|The username logged in at the time of the change
|The protochain according to Application Control
|-
|-
|hostname
|application_control_category
|Application Control Category
|text
|text
|The remote hostname
|The category according to Application Control
|-
|-
|}
|application_control_blocked
<section end='settings_changes' />
|Application Control Blocked
 
|boolean
 
|True if Application Control blocked the session
== wan_failover_action_events ==
<section begin='wan_failover_action_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|application_control_flagged
|timestamp without time zone
|Application Control Flagged
|The time of the event
|boolean
|True if Application Control flagged the session
|-
|-
|interface_id
|application_control_confidence
|Application Control Confidence
|integer
|integer
|This interface ID
|True if Application Control confidence of this session's identification
|-
|-
|action
|application_control_ruleid
|text
|Application Control Rule ID
|This action (CONNECTED/DISCONNECTED)
|integer
|The matching rule in Application Control (if any)
|-
|-
|os_name
|application_control_detail
|Application Control Detail
|text
|text
|This O/S name of the interface
|The text detail from the Application Control engine
|-
|-
|name
|bandwidth_control_priority
|Bandwidth Control Priority
|integer
|The priority given to this session
|-
|bandwidth_control_rule
|Bandwidth Control Rule ID
|integer
|The matching rule in Bandwidth Control rule (if any)
|-
|ssl_inspector_ruleid
|SSL Inspector Rule ID
|integer
|The matching rule in SSL Inspector rule (if any)
|-
|ssl_inspector_status
|SSL Inspector Status
|text
|The status/action of the SSL session (INSPECTED,IGNORED,BLOCKED,UNTRUSTED,ABANDONED)
|-
|ssl_inspector_detail
|SSL Inspector Detail
|text
|text
|This name of the interface
|Additional text detail about the SSL connection (SNI, IP Address)
|-
|local_addr
|Local Address
|inet
|The IP address of the local participant
|-
|remote_addr
|Remote Address
|inet
|The IP address of the remote participant
|-
|-
|event_id
|tags
|bigint
|Tags
|The unique event ID
|text
|The tags on this session
|-
|-
|}
|}
<section end='wan_failover_action_events' />
<section end='session_minutes' />




== wan_failover_test_events ==  
== quotas ==  
<section begin='wan_failover_test_events' />
<section begin='quotas' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|interface_id
|action
|Action
|integer
|integer
|This interface ID
|The action (1=Quota Given, 2=Quota Exceeded)
|-
|size
|Size
|bigint
|The size of the quota
|-
|-
|name
|reason
|Reason
|text
|text
|This name of the interface
|The reason for the action
|-
|-
|description
|entity
|Entity
|text
|text
|The description from the test rule
|The IP entity given the quota (address/username)
|-
|success
|boolean
|The result of the test (true if the test succeeded, false otherwise)
|-
|event_id
|bigint
|The unique event ID
|-
|-
|}
|}
<section end='wan_failover_test_events' />
<section end='quotas' />




== mail_msgs ==  
== host_table_updates ==  
<section begin='mail_msgs' />
<section begin='host_table_updates' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|address
|Address
|inet
|The IP address of the host
|-
|key
|Key
|text
|The key being updated
|-
|value
|Value
|text
|The new value for the key
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|session_id
|old_value
|bigint
|Old Value
|The session
|text
|The old value for the key
|-
|-
|client_intf
|}
|smallint
<section end='host_table_updates' />
|The client interface
 
|-
 
|server_intf
== device_table_updates ==
|smallint
<section begin='device_table_updates' />
|The server interface
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|-
|c_client_addr
|mac_address
|inet
|MAC Address
|The client-side client IP address
|text
|The MAC address of the device
|-
|-
|s_client_addr
|key
|inet
|Key
|The server-side client IP address
|text
|The key being updated
|-
|-
|c_server_addr
|value
|inet
|Value
|The client-side server IP address
|text
|The new value for the key
|-
|-
|s_server_addr
|time_stamp
|inet
|Timestamp
|The server-side server IP address
|timestamp without time zone
|The time of the event
|-
|-
|c_client_port
|old_value
|integer
|Old Value
|The client-side client port
|text
|The old value for the key
|-
|-
|s_client_port
|}
|integer
<section end='device_table_updates' />
|The server-side client port
 
 
== alerts ==
<section begin='alerts' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|-
|c_server_port
|time_stamp
|integer
|Timestamp
|The client-side server port
|timestamp without time zone
|The time of the event
|-
|-
|s_server_port
|description
|integer
|Text detail of the event
|The server-side server port
|-
|policy_id
|bigint
|The policy
|-
|username
|text
|text
|The username
|The description from the alert rule.
|-
|-
|msg_id
|summary_text
|bigint
|Summary Text
|The message ID
|-
|subject
|text
|text
|The email subject
|The summary text of the alert
|-
|-
|hostname
|json
|JSON Text
|text
|text
|The hostname
|The summary JSON representation of the event causing the alert
|-
|-
|event_id
|}
|bigint
<section end='alerts' />
|The unique event ID
 
 
== settings_changes ==
<section begin='settings_changes' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|-
|sender
|settings_file
|Settings File
|text
|text
|The address of the sender
|The name of the file changed
|-
|-
|receiver
|username
|Username
|text
|text
|The address of the receiver
|The username logged in at the time of the change
|-
|-
|virus_blocker_lite_clean
|hostname
|boolean
|Hostname
|The cleanliness of the file according to Virus Blocker Lite
|-
|virus_blocker_lite_name
|text
|text
|The name of the malware according to Virus Blocker Lite
|The remote hostname
|-
|}
<section end='settings_changes' />
 
 
== wan_failover_test_events ==
<section begin='wan_failover_test_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|-
|virus_blocker_clean
|interface_id
|boolean
|Interface ID
|The cleanliness of the file according to Virus Blocker
|integer
|This interface ID
|-
|-
|virus_blocker_name
|name
|Interface Name
|text
|text
|The name of the malware according to Virus Blocker
|This name of the interface
|-
|-
|spam_blocker_lite_score
|description
|real
|Text detail of the event
|The score of the email according to Spam Blocker Lite
|text
|The description from the test rule
|-
|-
|spam_blocker_lite_is_spam
|success
|Success
|boolean
|boolean
|The spam status of the email according to Spam Blocker Lite
|The result of the test (true if the test succeeded, false otherwise)
|-
|-
|spam_blocker_lite_tests_string
|event_id
|text
|Event ID
|The tess results for Spam Blocker Lite
|bigint
|The unique event ID
|-
|-
|spam_blocker_lite_action
|}
|character(1)
<section end='wan_failover_test_events' />
|The action taken by Spam Blocker Lite
 
|-
 
|spam_blocker_score
== wan_failover_action_events ==
|real
<section begin='wan_failover_action_events' />
|The score of the email according to Spam Blocker
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|-
|spam_blocker_is_spam
|interface_id
|boolean
|Interface ID
|The spam status of the email according to Spam Blocker
|integer
|This interface ID
|-
|-
|spam_blocker_tests_string
|action
|Action
|text
|text
|The tess results for Spam Blocker
|This action (CONNECTED,DISCONNECTED)
|-
|-
|spam_blocker_action
|os_name
|character(1)
|Interface O/S Name
|The action taken by Spam Blocker
|text
|This O/S name of the interface
|-
|-
|phish_blocker_score
|name
|real
|Interface Name
|The score of the email according to Phish Blocker
|-
|phish_blocker_is_spam
|boolean
|The phish status of the email according to Phish Blocker
|-
|phish_blocker_tests_string
|text
|text
|The tess results for Phish Blocker
|This name of the interface
|-
|-
|phish_blocker_action
|event_id
|character(1)
|Event ID
|The action taken by Phish Blocker
|bigint
|The unique event ID
|-
|-
|}
|}
<section end='mail_msgs' />
<section end='wan_failover_action_events' />




== mail_addrs ==  
== mail_msgs ==  
<section begin='mail_addrs' />
<section begin='mail_msgs' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|session_id
|session_id
|Session ID
|bigint
|bigint
|The session
|The session
|-
|-
|client_intf
|client_intf
|Client Interface
|smallint
|smallint
|The client interface
|The client interface
|-
|-
|server_intf
|server_intf
|Server Interface
|smallint
|smallint
|The server interface
|The server interface
|-
|-
|c_client_addr
|c_client_addr
|Client-side Client Address
|inet
|inet
|The client-side client IP address
|The client-side client IP address
|-
|-
|s_client_addr
|s_client_addr
|Server-side Client Address
|inet
|inet
|The server-side client IP address
|The server-side client IP address
|-
|-
|c_server_addr
|c_server_addr
|Client-side Server Address
|inet
|inet
|The client-side server IP address
|The client-side server IP address
|-
|-
|s_server_addr
|s_server_addr
|Server-side Server Address
|inet
|inet
|The server-side server IP address
|The server-side server IP address
|-
|-
|c_client_port
|c_client_port
|Client-side Client Port
|integer
|integer
|The client-side client port
|The client-side client port
|-
|-
|s_client_port
|s_client_port
|Server-side Client Port
|integer
|integer
|The server-side client port
|The server-side client port
|-
|-
|c_server_port
|c_server_port
|Client-side Server Port
|integer
|integer
|The client-side server port
|The client-side server port
|-
|-
|s_server_port
|s_server_port
|Server-side Server Port
|integer
|integer
|The server-side server port
|The server-side server port
|-
|-
|policy_id
|policy_id
|Policy ID
|bigint
|bigint
|The policy
|The policy
|-
|-
|username
|username
|Username
|text
|text
|The username
|The username associated with this session
|-
|-
|msg_id
|msg_id
|Message ID
|bigint
|bigint
|The message ID
|The message ID
|-
|-
|subject
|subject
|Subject
|text
|text
|The email subject
|The email subject
|-
|-
|addr
|hostname
|Hostname
|text
|text
|The address of this event
|The hostname of the local address
|-
|-
|addr_name
|event_id
|text
|Event ID
|The name for this address
|-
|addr_kind
|character(1)
|The type for this address (F=From, T=To, C=CC, G=Envelope From, B=Envelope To, X=Unknown)
|-
|hostname
|text
|The hostname
|-
|event_id
|bigint
|bigint
|The unique event ID
|The unique event ID
|-
|-
|sender
|sender
|Sender
|text
|text
|The address of the sender
|The address of the sender
|-
|receiver
|Receiver
|text
|The address of the receiver
|-
|-
|virus_blocker_lite_clean
|virus_blocker_lite_clean
|Virus Blocker Lite Clean
|boolean
|boolean
|The cleanliness of the file according to Virus Blocker Lite
|The cleanliness of the file according to Virus Blocker Lite
|-
|-
|virus_blocker_lite_name
|virus_blocker_lite_name
|Virus Blocker Lite Name
|text
|text
|The name of the malware according to Virus Blocker Lite
|The name of the malware according to Virus Blocker Lite
|-
|-
|virus_blocker_clean
|virus_blocker_clean
|Virus Blocker Clean
|boolean
|boolean
|The cleanliness of the file according to Virus Blocker
|The cleanliness of the file according to Virus Blocker
|-
|-
|virus_blocker_name
|virus_blocker_name
|Virus Blocker Name
|text
|text
|The name of the malware according to Virus Blocker
|The name of the malware according to Virus Blocker
|-
|-
|spam_blocker_lite_score
|spam_blocker_lite_score
|Spam Blocker Lite Score
|real
|real
|The score of the email according to Spam Blocker Lite
|The score of the email according to Spam Blocker Lite
|-
|-
|spam_blocker_lite_is_spam
|spam_blocker_lite_is_spam
|Spam Blocker Lite Spam
|boolean
|boolean
|The spam status of the email according to Spam Blocker Lite
|The spam status of the email according to Spam Blocker Lite
|-
|spam_blocker_lite_tests_string
|Spam Blocker Lite Tests
|text
|The tess results for Spam Blocker Lite
|-
|-
|spam_blocker_lite_action
|spam_blocker_lite_action
|Spam Blocker Lite Action
|character(1)
|character(1)
|The action taken by Spam Blocker Lite
|The action taken by Spam Blocker Lite
|-
|spam_blocker_lite_tests_string
|text
|The tess results for Spam Blocker Lite
|-
|-
|spam_blocker_score
|spam_blocker_score
|Spam Blocker Score
|real
|real
|The score of the email according to Spam Blocker
|The score of the email according to Spam Blocker
|-
|-
|spam_blocker_is_spam
|spam_blocker_is_spam
|Spam Blocker Spam
|boolean
|boolean
|The spam status of the email according to Spam Blocker
|The spam status of the email according to Spam Blocker
|-
|spam_blocker_tests_string
|Spam Blocker Tests
|text
|The tess results for Spam Blocker
|-
|-
|spam_blocker_action
|spam_blocker_action
|Spam Blocker Action
|character(1)
|character(1)
|The action taken by Spam Blocker
|The action taken by Spam Blocker
|-
|spam_blocker_tests_string
|text
|The tess results for Spam Blocker
|-
|-
|phish_blocker_score
|phish_blocker_score
|Phish Blocker Score
|real
|real
|The score of the email according to Phish Blocker
|The score of the email according to Phish Blocker
|-
|-
|phish_blocker_is_spam
|phish_blocker_is_spam
|Phish Blocker Phish
|boolean
|boolean
|The phish status of the email according to Phish Blocker
|The phish status of the email according to Phish Blocker
|-
|-
|phish_blocker_tests_string
|phish_blocker_tests_string
|Phish Blocker Tests
|text
|text
|The tess results for Phish Blocker
|The tess results for Phish Blocker
|-
|-
|phish_blocker_action
|phish_blocker_action
|Phish Blocker Action
|character(1)
|character(1)
|The action taken by Phish Blocker
|The action taken by Phish Blocker
|-
|-
|}
|}
<section end='mail_addrs' />
<section end='mail_msgs' />




== smtp_tarpit_events ==  
== mail_addrs ==  
<section begin='smtp_tarpit_events' />
<section begin='mail_addrs' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|ipaddr
|session_id
|inet
|Session ID
|The client IP address
|bigint
|The session
|-
|-
|hostname
|client_intf
|text
|Client Interface
|The hostname
|smallint
|The client interface
|-
|-
|policy_id
|server_intf
|bigint
|Server Interface
|The policy
|smallint
|The server interface
|-
|-
|vendor_name
|c_client_addr
|character varying(255)
|Client-side Client Address
|The "vendor name" of the app that logged the event
|inet
|The client-side client IP address
|-
|-
|event_id
|s_client_addr
|bigint
|Server-side Client Address
|The unique event ID
|inet
|The server-side client IP address
|-
|-
|}
|c_server_addr
<section end='smtp_tarpit_events' />
|Client-side Server Address
 
|inet
 
|The client-side server IP address
== http_events ==
<section begin='http_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|request_id
|s_server_addr
|bigint
|Server-side Server Address
|The HTTP request ID
|inet
|The server-side server IP address
|-
|-
|time_stamp
|c_client_port
|timestamp without time zone
|Client-side Client Port
|The time of the event
|integer
|The client-side client port
|-
|-
|session_id
|s_client_port
|bigint
|Server-side Client Port
|The session
|integer
|The server-side client port
|-
|-
|client_intf
|c_server_port
|smallint
|Client-side Server Port
|The client interface
|integer
|The client-side server port
|-
|-
|server_intf
|s_server_port
|smallint
|Server-side Server Port
|The server interface
|integer
|The server-side server port
|-
|-
|c_client_addr
|policy_id
|inet
|Policy ID
|The client-side client IP address
|bigint
|The policy
|-
|-
|s_client_addr
|username
|inet
|Username
|The server-side client IP address
|text
|The username associated with this session
|-
|-
|c_server_addr
|msg_id
|inet
|Message ID
|The client-side server IP address
|bigint
|The message ID
|-
|-
|s_server_addr
|subject
|inet
|Subject
|The server-side server IP address
|text
|The email subject
|-
|-
|c_client_port
|addr
|integer
|Address
|The client-side client port
|text
|The address of this event
|-
|-
|s_client_port
|addr_name
|integer
|Address Name
|The server-side client port
|text
|The name for this address
|-
|-
|c_server_port
|addr_kind
|integer
|Address Kind
|The client-side server port
|character(1)
|The type for this address (F=From, T=To, C=CC, G=Envelope From, B=Envelope To, X=Unknown)
|-
|-
|s_server_port
|hostname
|integer
|Hostname
|The server-side server port
|text
|The hostname of the local address
|-
|-
|policy_id
|event_id
|smallint
|Event ID
|The policy
|bigint
|The unique event ID
|-
|-
|username
|sender
|Sender
|text
|text
|The username
|The address of the sender
|-
|-
|hostname
|virus_blocker_lite_clean
|Virus Blocker Lite Clean
|boolean
|The cleanliness of the file according to Virus Blocker Lite
|-
|virus_blocker_lite_name
|Virus Blocker Lite Name
|text
|text
|The hostname
|The name of the malware according to Virus Blocker Lite
|-
|-
|method
|virus_blocker_clean
|character(1)
|Virus Blocker Clean
|The HTTP method
|boolean
|The cleanliness of the file according to Virus Blocker
|-
|-
|uri
|virus_blocker_name
|Virus Blocker Name
|text
|text
|The HTTP URI
|The name of the malware according to Virus Blocker
|-
|-
|host
|spam_blocker_lite_score
|text
|Spam Blocker Lite Score
|The HTTP host
|real
|The score of the email according to Spam Blocker Lite
|-
|-
|domain
|spam_blocker_lite_is_spam
|text
|Spam Blocker Lite Spam
|The HTTP domain (shortened host)
|boolean
|The spam status of the email according to Spam Blocker Lite
|-
|-
|c2s_content_length
|spam_blocker_lite_action
|bigint
|Spam Blocker Lite Action
|The client-to-server content length
|character(1)
|The action taken by Spam Blocker Lite
|-
|-
|s2c_content_length
|spam_blocker_lite_tests_string
|bigint
|Spam Blocker Lite Tests
|The server-to-client content length
|-
|s2c_content_type
|text
|text
|The server-to-client content type
|The tess results for Spam Blocker Lite
|-
|-
|ad_blocker_cookie_ident
|spam_blocker_score
|text
|Spam Blocker Score
|This name of cookie blocked by Ad Blocker
|real
|The score of the email according to Spam Blocker
|-
|-
|ad_blocker_action
|spam_blocker_is_spam
|character(1)
|Spam Blocker Spam
|This action of Ad Blocker on this request
|boolean
|The spam status of the email according to Spam Blocker
|-
|-
|web_filter_lite_reason
|spam_blocker_action
|Spam Blocker Action
|character(1)
|character(1)
|This reason Web Filter Lite blocked/flagged this request
|The action taken by Spam Blocker
|-
|-
|web_filter_lite_category
|spam_blocker_tests_string
|Spam Blocker Tests
|text
|text
|This category according to Web Filter Lite
|The tess results for Spam Blocker
|-
|-
|web_filter_lite_blocked
|phish_blocker_score
|boolean
|Phish Blocker Score
|If Web Filter Lite blocked this request
|real
|The score of the email according to Phish Blocker
|-
|-
|web_filter_lite_flagged
|phish_blocker_is_spam
|Phish Blocker Phish
|boolean
|boolean
|If Web Filter Lite flagged this request
|The phish status of the email according to Phish Blocker
|-
|-
|web_filter_reason
|phish_blocker_tests_string
|character(1)
|Phish Blocker Tests
|This reason Web Filter blocked/flagged this request
|-
|web_filter_category
|text
|text
|This category according to Web Filter
|The tess results for Phish Blocker
|-
|-
|web_filter_blocked
|phish_blocker_action
|boolean
|Phish Blocker Action
|If Web Filter blocked this request
|character(1)
|The action taken by Phish Blocker
|-
|-
|web_filter_flagged
|}
|boolean
<section end='mail_addrs' />
|If Web Filter flagged this request
 
|-
 
|virus_blocker_lite_clean
== smtp_tarpit_events ==  
|boolean
<section begin='smtp_tarpit_events' />
|The cleanliness of the file according to Virus Blocker Lite
|-
|virus_blocker_lite_name
|text
|The name of the malware according to Virus Blocker Lite
|-
|virus_blocker_clean
|boolean
|The cleanliness of the file according to Virus Blocker
|-
|virus_blocker_name
|text
|The name of the malware according to Virus Blocker
|-
|referer
|text
|The Referer URL
|-
|}
<section end='http_events' />
 
 
== ftp_events ==  
<section begin='ftp_events' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|event_id
|time_stamp
|bigint
|Timestamp
|The unique event ID
|-
|time_stamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|session_id
|ipaddr
|Client Address
|inet
|The client IP address
|-
|hostname
|Hostname
|text
|The hostname of the local address
|-
|policy_id
|Policy ID
|bigint
|bigint
|The session
|The policy
|-
|-
|client_intf
|vendor_name
|smallint
|Vendor Name
|The client interface
|character varying(255)
|The "vendor name" of the app that logged the event
|-
|-
|server_intf
|event_id
|smallint
|Event ID
|The server interface
|bigint
|The unique event ID
|-
|-
|c_client_addr
|}
|inet
<section end='smtp_tarpit_events' />
|The client-side client IP address
 
 
== http_events ==
<section begin='http_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|-
|s_client_addr
|request_id
|inet
|Request ID
|The server-side client IP address
|bigint
|The HTTP request ID
|-
|-
|c_server_addr
|time_stamp
|inet
|Timestamp
|The client-side server IP address
|timestamp without time zone
|The time of the event
|-
|-
|s_server_addr
|session_id
|inet
|Session ID
|The server-side server IP address
|-
|policy_id
|bigint
|bigint
|The policy
|The session
|-
|-
|username
|client_intf
|text
|Client Interface
|The username
|smallint
|The client interface
|-
|-
|hostname
|server_intf
|text
|Server Interface
|The hostname
|smallint
|The server interface
|-
|-
|request_id
|c_client_addr
|bigint
|Client-side Client Address
|The FTP request ID
|inet
|The client-side client IP address
|-
|-
|method
|s_client_addr
|character(1)
|Server-side Client Address
|The FTP method
|inet
|The server-side client IP address
|-
|-
|uri
|c_server_addr
|text
|Client-side Server Address
|The FTP URI
|inet
|The client-side server IP address
|-
|-
|virus_blocker_lite_clean
|s_server_addr
|boolean
|Server-side Server Address
|The cleanliness of the file according to Virus Blocker Lite
|inet
|The server-side server IP address
|-
|-
|virus_blocker_lite_name
|c_client_port
|text
|Client-side Client Port
|The name of the malware according to Virus Blocker Lite
|integer
|The client-side client port
|-
|-
|virus_blocker_clean
|s_client_port
|boolean
|Server-side Client Port
|The cleanliness of the file according to Virus Blocker
|integer
|The server-side client port
|-
|-
|virus_blocker_name
|c_server_port
|text
|Client-side Server Port
|The name of the malware according to Virus Blocker
|integer
|The client-side server port
|-
|-
|}
|s_server_port
<section end='ftp_events' />
|Server-side Server Port
 
|integer
 
|The server-side server port
== ipsec_user_events ==
<section begin='ipsec_user_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|event_id
|policy_id
|bigint
|Policy ID
|The unique event ID
|smallint
|The policy
|-
|-
|time_stamp
|username
|timestamp without time zone
|Username
|The time of the event
|text
|The username associated with this session
|-
|-
|connect_stamp
|hostname
|timestamp without time zone
|Hostname
|The time the connection started
|text
|The hostname of the local address
|-
|-
|goodbye_stamp
|method
|timestamp without time zone
|Method
|The time the connection ended
|character(1)
|The HTTP method
|-
|-
|client_address
|uri
|URI
|text
|text
|The remote IP address of the client
|The HTTP URI
|-
|-
|client_protocol
|host
|Host
|text
|text
|The protocol the client used to connect
|The HTTP host
|-
|-
|client_username
|domain
|Domain
|text
|text
|The username of the client
|The HTTP domain (shortened host)
|-
|-
|net_process
|referer
|Referer
|text
|text
|The PID of the PPP process for L2TP connections or the connection ID for Xauth connections
|The Referer URL
|-
|-
|net_interface
|c2s_content_length
|Client-to-server Content Length
|bigint
|The client-to-server content length
|-
|s2c_content_length
|Server-to-client Content Length
|bigint
|The server-to-client content length
|-
|s2c_content_type
|Server-to-client Content Type
|text
|text
|The PPP interface for L2TP connections or the client interface for Xauth connections
|The server-to-client content type
|-
|-
|elapsed_time
|ad_blocker_cookie_ident
|Ad Blocker Cookie
|text
|text
|The total time the client was connected
|This name of cookie blocked by Ad Blocker
|-
|ad_blocker_action
|Ad Blocker Action
|character(1)
|This action of Ad Blocker on this request
|-
|-
|rx_bytes
|web_filter_reason
|bigint
|Web Filter Reason
|The number of bytes received from the client in this connection
|character(1)
|This reason Web Filter blocked/flagged this request
|-
|-
|tx_bytes
|web_filter_category_id
|bigint
|Web Filter Category ID
|The number of bytes sent to the client in this connection
|int
|This category ID according to Web Filter
|-
|-
|}
|web_filter_blocked
<section end='ipsec_user_events' />
|Web Filter Blocked
 
|boolean
 
|If Web Filter blocked this request
== configuration_backup_events ==
<section begin='configuration_backup_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|web_filter_flagged
|timestamp without time zone
|Web Filter Flagged
|The time of the event
|boolean
|If Web Filter flagged this request
|-
|-
|success
|virus_blocker_lite_clean
|Virus Blocker Lite Clean
|boolean
|boolean
|The result of the backup (true if the backup succeeded, false otherwise)
|The cleanliness of the file according to Virus Blocker Lite
|-
|-
|description
|virus_blocker_lite_name
|Virus Blocker Lite Name
|text
|text
|Text detail of the event
|The name of the malware according to Virus Blocker Lite
|-
|-
|destination
|virus_blocker_clean
|Virus Blocker Clean
|boolean
|The cleanliness of the file according to Virus Blocker
|-
|virus_blocker_name
|Virus Blocker Name
|text
|text
|The location of the backup
|The name of the malware according to Virus Blocker
|-
|event_id
|bigint
|The unique event ID
|-
|-
|}
|}
<section end='configuration_backup_events' />
<section end='http_events' />


 
== ftp_events ==  
== ipsec_tunnel_stats ==  
<section begin='ftp_events' />
<section begin='ipsec_tunnel_stats' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|event_id
|Event ID
|bigint
|The unique event ID
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|tunnel_name
|session_id
|text
|Session ID
|The name of the IPsec tunnel
|bigint
|The session
|-
|client_intf
|Client Interface
|smallint
|The client interface
|-
|-
|in_bytes
|server_intf
|bigint
|Server Interface
|The number of bytes received during this time frame
|smallint
|The server interface
|-
|-
|out_bytes
|c_client_addr
|bigint
|Client-side Client Address
|The number of bytes transmitted during this time frame
|inet
|The client-side client IP address
|-
|-
|event_id
|s_client_addr
|bigint
|Server-side Client Address
|The unique event ID
|inet
|The server-side client IP address
|-
|-
|}
|c_server_addr
<section end='ipsec_tunnel_stats' />
|Client-side Server Address
 
|inet
 
|The client-side server IP address
== server_events ==
<section begin='server_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|s_server_addr
|timestamp without time zone
|Server-side Server Address
|The time of the event
|inet
|The server-side server IP address
|-
|-
|load_1
|policy_id
|numeric(6,2)
|Policy ID
|The 1-minute CPU load
|bigint
|The policy
|-
|-
|load_5
|username
|numeric(6,2)
|Username
|The 5-minute CPU load
|text
|The username associated with this session
|-
|-
|load_15
|hostname
|numeric(6,2)
|Hostname
|The 15-minute CPU load
|text
|The hostname of the local address
|-
|-
|cpu_user
|request_id
|numeric(6,3)
|Request ID
|The user CPU percent utilization
|bigint
|The FTP request ID
|-
|-
|cpu_system
|method
|numeric(6,3)
|Method
|The system CPU percent utilization
|character(1)
|The FTP method
|-
|-
|mem_total
|uri
|bigint
|URI
|The total bytes of memory
|text
|The FTP URI
|-
|-
|mem_free
|virus_blocker_lite_clean
|bigint
|Virus Blocker Lite Clean
|The number of free bytes of memory
|boolean
|The cleanliness of the file according to Virus Blocker Lite
|-
|-
|disk_total
|virus_blocker_lite_name
|bigint
|Virus Blocker Lite Name
|The total disk size in bytes
|text
|The name of the malware according to Virus Blocker Lite
|-
|-
|disk_free
|virus_blocker_clean
|bigint
|Virus Blocker Clean
|The free disk space in bytes
|boolean
|The cleanliness of the file according to Virus Blocker
|-
|-
|swap_total
|virus_blocker_name
|bigint
|Virus Blocker Name
|The total swap size in bytes
|text
|-
|The name of the malware according to Virus Blocker
|swap_free
|bigint
|The free disk swap in bytes
|-
|active_hosts
|integer
|The number of active hosts
|-
|-
|}
|}
<section end='server_events' />
<section end='ftp_events' />




== captive_portal_user_events ==  
== ipsec_user_events ==  
<section begin='captive_portal_user_events' />
<section begin='ipsec_user_events' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|event_id
|Event ID
|bigint
|The unique event ID
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|policy_id
|connect_stamp
|bigint
|Connect Time
|The policy
|timestamp without time zone
|The time the connection started
|-
|-
|event_id
|goodbye_stamp
|bigint
|End Time
|The unique event ID
|timestamp without time zone
|The time the connection ended
|-
|-
|login_name
|client_address
|Client Address
|text
|text
|The login username
|The remote IP address of the client
|-
|-
|event_info
|client_protocol
|Client Protocol
|text
|text
|The type of event (LOGIN, FAILED, TIMEOUT, INACTIVE, USER_LOGOUT, ADMIN_LOGOUT)
|The protocol the client used to connect
|-
|-
|auth_type
|client_username
|Client Username
|text
|The username of the client
|-
|net_process
|Net Process
|text
|The PID of the PPP process for L2TP connections or the connection ID for Xauth connections
|-
|net_interface
|Net Interface
|text
|text
|The authorization type for this event
|The PPP interface for L2TP connections or the client interface for Xauth connections
|-
|-
|client_addr
|elapsed_time
|Elapsed Time
|text
|text
|The remote IP address of the client
|The total time the client was connected
|-
|rx_bytes
|Bytes Received
|bigint
|The number of bytes received from the client in this connection
|-
|tx_bytes
|Bytes Sent
|bigint
|The number of bytes sent to the client in this connection
|-
|-
|}
|}
<section end='captive_portal_user_events' />
<section end='ipsec_user_events' />




== directory_connector_login_events ==  
== ipsec_tunnel_stats ==  
<section begin='directory_connector_login_events' />
<section begin='ipsec_tunnel_stats' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|login_name
|tunnel_name
|Tunnel Name
|text
|text
|The login name
|The name of the IPsec tunnel
|-
|-
|domain
|in_bytes
|text
|In Bytes
|The AD domain
|bigint
|The number of bytes received during this time frame
|-
|-
|type
|out_bytes
|text
|Out Bytes
|The type of event (I=Login,U=Update,O=Logout)
|bigint
|The number of bytes transmitted during this time frame
|-
|-
|client_addr
|event_id
|inet
|Event ID
|The client IP address
|bigint
|The unique event ID
|-
|-
|}
|}
<section end='directory_connector_login_events' />
<section end='ipsec_tunnel_stats' />




== web_cache_stats ==  
== interface_stat_events ==  
<section begin='web_cache_stats' />
<section begin='interface_stat_events' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|hits
|interface_id
|bigint
|Interface ID
|The number of cache hits during this time frame
|integer
|The interface ID
|-
|-
|misses
|rx_rate
|bigint
|Rx Rate
|The number of cache misses during this time frame
|double precision
|The RX rate (bytes/s)
|-
|-
|bypasses
|tx_rate
|bigint
|Tx Rate
|The number of cache user bypasses during this time frame
|double precision
|The TX rate (bytes/s)
|-
|-
|systems
|}
|bigint
<section end='interface_stat_events' />
|The number of cache system bypasses during this time frame
 
|-
 
|hit_bytes
== configuration_backup_events ==  
|bigint
<section begin='configuration_backup_events' />
|The number of bytes saved from cache hits
|-
|miss_bytes
|bigint
|The number of bytes not saved from cache misses
|-
|event_id
|bigint
|The unique event ID
|-
|}
<section end='web_cache_stats' />
 
 
== http_query_events ==  
<section begin='http_query_events' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|event_id
|bigint
|The unique event ID
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|session_id
|success
|bigint
|Success
|The session
|boolean
|The result of the backup (true if the backup succeeded, false otherwise)
|-
|-
|client_intf
|description
|smallint
|Text detail of the event
|The client interface
|text
|Text detail of the event
|-
|-
|server_intf
|destination
|smallint
|Destination
|The server interface
|text
|The location of the backup
|-
|-
|c_client_addr
|event_id
|inet
|Event ID
|The client-side client IP address
|bigint
|The unique event ID
|-
|-
|s_client_addr
|}
|inet
<section end='configuration_backup_events' />
|The server-side client IP address
 
|-
 
|c_server_addr
== directory_connector_login_events ==
|inet
<section begin='directory_connector_login_events' />
|The client-side server IP address
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|-
|s_server_addr
|time_stamp
|inet
|Timestamp
|The server-side server IP address
|timestamp without time zone
|The time of the event
|-
|-
|c_client_port
|login_name
|integer
|Login Name
|The client-side client port
|text
|The login name
|-
|-
|s_client_port
|domain
|integer
|Domain
|The server-side client port
|text
|The AD domain
|-
|-
|c_server_port
|type
|integer
|Type
|The client-side server port
|-
|s_server_port
|integer
|The server-side server port
|-
|policy_id
|bigint
|The policy
|-
|username
|text
|text
|The username
|The type of event (I=Login,U=Update,O=Logout)
|-
|-
|hostname
|client_addr
|text
|Client Address
|The hostname
|inet
|The client IP address
|-
|-
|request_id
|}
|bigint
<section end='directory_connector_login_events' />
|The HTTP request ID
 
 
== server_events ==
<section begin='server_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|-
|method
|time_stamp
|character(1)
|Timestamp
|The HTTP method
|timestamp without time zone
|The time of the event
|-
|-
|uri
|load_1
|text
|CPU load (1-min)
|The HTTP URI
|numeric(6,2)
|The 1-minute CPU load
|-
|-
|term
|load_5
|text
|CPU load (5-min)
|The search term
|numeric(6,2)
|The 5-minute CPU load
|-
|-
|host
|load_15
|text
|CPU load (15-min)
|The HTTP host
|numeric(6,2)
|The 15-minute CPU load
|-
|cpu_user
|CPU User Utilization
|numeric(6,3)
|The user CPU percent utilization
|-
|cpu_system
|CPU System Utilization
|numeric(6,3)
|The system CPU percent utilization
|-
|-
|c2s_content_length
|mem_total
|Total Memory
|bigint
|bigint
|The client-to-server content length
|The total bytes of memory
|-
|-
|s2c_content_length
|mem_free
|Memory Free
|bigint
|bigint
|The server-to-client content length
|The number of free bytes of memory
|-
|-
|s2c_content_type
|disk_total
|text
|Disk Size
|The server-to-client content type
|bigint
|The total disk size in bytes
|-
|-
|}
|disk_free
<section end='http_query_events' />
|Disk Free
|bigint
|The free disk space in bytes
|-
|swap_total
|Swap Size
|bigint
|The total swap size in bytes
|-
|swap_free
|Swap Free
|bigint
|The free disk swap in bytes
|-
|active_hosts
|Active Hosts
|integer
|The number of active hosts
|-
|}
<section end='server_events' />




== openvpn_stats ==  
== web_cache_stats ==  
<section begin='openvpn_stats' />
<section begin='web_cache_stats' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|start_time
|hits
|timestamp without time zone
|Hits
|The time the OpenVPN session started
|bigint
|The number of cache hits during this time frame
|-
|-
|end_time
|misses
|timestamp without time zone
|Misses
|The time the OpenVPN session ended
|bigint
|The number of cache misses during this time frame
|-
|-
|rx_bytes
|bypasses
|Bypasses
|bigint
|bigint
|The total bytes received from the client during this session
|The number of cache user bypasses during this time frame
|-
|-
|tx_bytes
|systems
|System bypasses
|bigint
|bigint
|The total bytes sent to the client during this session
|The number of cache system bypasses during this time frame
|-
|-
|remote_address
|hit_bytes
|inet
|Hit Bytes
|The remote IP address of the client
|bigint
|The number of bytes saved from cache hits
|-
|-
|pool_address
|miss_bytes
|inet
|Miss Bytes
|The pool IP address of the client
|bigint
|The number of bytes not saved from cache misses
|-
|-
|remote_port
|event_id
|integer
|Event ID
|The remote port of the client
|bigint
|-
|client_name
|text
|The name of the client
|-
|event_id
|bigint
|The unique event ID
|The unique event ID
|-
|-
|}
|}
<section end='openvpn_stats' />
<section end='web_cache_stats' />




== openvpn_events ==  
== http_query_events ==  
<section begin='openvpn_events' />
<section begin='http_query_events' />


{| border="1" cellpadding="2" width="90%%" align="center"
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Column Name
!Human Name
!Type
!Type
!Description
!Description
|-
|event_id
|Event ID
|bigint
|The unique event ID
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|-
|remote_address
|session_id
|inet
|Session ID
|The remote IP address of the client
|bigint
|The session
|-
|-
|pool_address
|client_intf
|Client Interface
|smallint
|The client interface
|-
|server_intf
|Server Interface
|smallint
|The server interface
|-
|c_client_addr
|Client-side Client Address
|inet
|The client-side client IP address
|-
|s_client_addr
|Server-side Client Address
|inet
|inet
|The pool IP address of the client
|The server-side client IP address
|-
|-
|client_name
|c_server_addr
|text
|Client-side Server Address
|The name of the client
|inet
|The client-side server IP address
|-
|-
|type
|s_server_addr
|text
|Server-side Server Address
|The type of the event (CONNECT/DISCONNECT)
|inet
|The server-side server IP address
|-
|-
|}
|c_client_port
<section end='openvpn_events' />
|Client-side Client Port
 
|integer
 
|The client-side client port
== intrusion_prevention_events ==
|-
<section begin='intrusion_prevention_events' />
|s_client_port
 
|Server-side Client Port
{| border="1" cellpadding="2" width="90%%" align="center"
|integer
!Column Name
|The server-side client port
!Type
!Description
|-
|-
|time_stamp
|c_server_port
|timestamp without time zone
|Client-side Server Port
|The time of the event
|integer
|The client-side server port
|-
|-
|sig_id
|s_server_port
|bigint
|Server-side Server Port
|This ID of the rule
|integer
|The server-side server port
|-
|-
|gen_id
|policy_id
|Policy ID
|bigint
|bigint
|The grouping ID for the rule, The gen_id + sig_id specify the rule's unique identifier
|The policy
|-
|username
|Username
|text
|The username associated with this session
|-
|hostname
|Hostname
|text
|The hostname of the local address
|-
|-
|class_id
|request_id
|Request ID
|bigint
|bigint
|The numeric ID for the classtype
|The HTTP request ID
|-
|-
|source_addr
|method
|inet
|Method
|The source IP address of the packet
|character(1)
|The HTTP method
|-
|-
|source_port
|uri
|integer
|URI
|The source port of the packet (if applicable)
|text
|The HTTP URI
|-
|-
|dest_addr
|term
|inet
|Search Term
|The destination IP address of the packet
|text
|-
|The search term
|dest_port
|-
|integer
|host
|The destination port of the packet (if applicable)
|Host
|text
|The HTTP host
|-
|-
|protocol
|c2s_content_length
|integer
|Client-to-server Content Length
|The protocol of the packet
|bigint
|The client-to-server content length
|-
|-
|blocked
|s2c_content_length
|boolean
|Server-to-client Content Length
|If the packet was blocked/dropped
|bigint
|The server-to-client content length
|-
|-
|category
|s2c_content_type
|Server-to-client Content Type
|text
|text
|The application specific grouping
|The server-to-client content type
|-
|-
|classtype
|}
<section end='http_query_events' />
 
 
== captive_portal_user_events ==
<section begin='captive_portal_user_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|policy_id
|Policy ID
|bigint
|The policy
|-
|event_id
|Event ID
|bigint
|The unique event ID
|-
|login_name
|Login Name
|text
|text
|The generalized threat rule grouping (unrelated to gen_id)
|The login username
|-
|event_info
|Event Type
|text
|The type of event (LOGIN, FAILED, TIMEOUT, INACTIVE, USER_LOGOUT, ADMIN_LOGOUT)
|-
|auth_type
|Authorization Type
|text
|The authorization type for this event
|-
|client_addr
|Client Address
|text
|The remote IP address of the client
|-
|}
<section end='captive_portal_user_events' />
 
 
== openvpn_stats ==
<section begin='openvpn_stats' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|start_time
|Start Time
|timestamp without time zone
|The time the OpenVPN session started
|-
|end_time
|End Time
|timestamp without time zone
|The time the OpenVPN session ended
|-
|rx_bytes
|Bytes Received
|bigint
|The total bytes received from the client during this session
|-
|tx_bytes
|Bytes Sent
|bigint
|The total bytes sent to the client during this session
|-
|remote_address
|Remote Address
|inet
|The remote IP address of the client
|-
|pool_address
|Pool Address
|inet
|The pool IP address of the client
|-
|remote_port
|Remote Port
|integer
|The remote port of the client
|-
|client_name
|Client Name
|text
|The name of the client
|-
|event_id
|Event ID
|bigint
|The unique event ID
|-
|}
<section end='openvpn_stats' />
 
 
== openvpn_events ==
<section begin='openvpn_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|remote_address
|Remote Address
|inet
|The remote IP address of the client
|-
|pool_address
|Pool Address
|inet
|The pool IP address of the client
|-
|client_name
|Client Name
|text
|The name of the client
|-
|type
|Type
|text
|The type of the event (CONNECT,DISCONNECT)
|-
|}
<section end='openvpn_events' />
 
 
== intrusion_prevention_events ==
<section begin='intrusion_prevention_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|sig_id
|Signature ID
|bigint
|This ID of the rule
|-
|gen_id
|Grouping ID
|bigint
|The grouping ID for the rule, The gen_id + sig_id specify the rule's unique identifier
|-
|class_id
|Classtype ID
|bigint
|The numeric ID for the classtype
|-
|source_addr
|Source Address
|inet
|The source IP address of the packet
|-
|source_port
|Source Port
|integer
|The source port of the packet (if applicable)
|-
|dest_addr
|Destination Address
|inet
|The destination IP address of the packet
|-
|dest_port
|Destination Port
|integer
|The destination port of the packet (if applicable)
|-
|protocol
|Protocol
|integer
|The protocol of the packet
|-
|blocked
|Blocked
|boolean
|If the packet was blocked/dropped
|-
|category
|Category
|text
|The application specific grouping
|-
|classtype
|Classtype
|text
|The generalized threat rule grouping (unrelated to gen_id)
|-
|msg
|Message
|text
|The "title" or "description" of the rule
|-
|}
<section end='intrusion_prevention_events' />
 
 
== syslog ==
<section begin='syslog' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|time_stamp
|Timestamp
|timestamp without time zone
|The time of the event
|-
|description
|Text detail of the event
|text
|The description from the alert rule.
|-
|summary_text
|Summary Text
|text
|The summary text of the alert
|-
|json
|JSON Text
|text
|The summary JSON representation of the event causing the alert
|-
|}
<section end='syslog' />
 
 
== user_table_updates ==
<section begin='user_table_updates' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Human Name
!Type
!Description
|-
|username
|Username
|text
|The username
|-
|key
|Key
|text
|The key being updated
|-
|value
|Value
|text
|The new value for the key
|-
|-
|msg
|old_value
|Old Value
|text
|text
|The "title" or "description" of the rule
|The old value for the key
|-
|}
<section end='intrusion_prevention_events' />
 
 
== interface_stat_events ==
<section begin='interface_stat_events' />
 
{| border="1" cellpadding="2" width="90%%" align="center"
!Column Name
!Type
!Description
|-
|-
|time_stamp
|time_stamp
|Timestamp
|timestamp without time zone
|timestamp without time zone
|The time of the event
|The time of the event
|-
|interface_id
|integer
|The interface ID
|-
|rx_rate
|double precision
|The RX rate (bytes/s)
|-
|tx_rate
|double precision
|The TX rate (bytes/s)
|-
|-
|}
|}
<section end='interface_stat_events' />
<section end='user_table_updates' />

Revision as of 21:47, 21 August 2019

Database Tables

admin_logins

<section begin='admin_logins' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
login Login text The login name
local Local boolean True if it is a login attempt through a local process
client_addr Client Address inet The client IP address
succeeded Succeeded boolean True if the login succeeded, false otherwise
reason Reason character(1) The reason for the login (if applicable)

<section end='admin_logins' />


sessions

<section begin='sessions' />

Column Name Human Name Type Description
session_id Session ID bigint The session
time_stamp Timestamp timestamp without time zone The time of the event
end_time End Time timestamp without time zone The time the session ended
bypassed Bypassed boolean True if the session was bypassed, false otherwise
entitled Entitled boolean True if the session is entitled to premium functionality
protocol Protocol smallint The IP protocol of session
icmp_type ICMP Type smallint The ICMP type of session if ICMP
hostname Hostname text The hostname of the local address
username Username text The username associated with this session
policy_id Policy ID smallint The policy
policy_rule_id Policy Rule ID smallint The ID of the matching policy rule (0 means none)
c_client_addr Client-side Client Address inet The client-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
c_server_port Client-side Server Port integer The client-side server port
c_client_port Client-side Client Port integer The client-side client port
s_client_addr Server-side Client Address inet The server-side client IP address
s_server_addr Server-side Server Address inet The server-side server IP address
s_server_port Server-side Server Port integer The server-side server port
s_client_port Server-side Client Port integer The server-side client port
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
client_country Client Country text The client Country
client_latitude Client Latitude real The client Latitude
client_longitude Client Longitude real The client Longitude
server_country Server Country text The server Country
server_latitude Server Latitude real The server Latitude
server_longitude Server Longitude real The server Longitude
c2p_bytes From-Client Bytes bigint The number of bytes the client sent to Untangle (client-to-pipeline)
p2c_bytes To-Client Bytes bigint The number of bytes Untangle sent to client (pipeline-to-client)
s2p_bytes From-Server Bytes bigint The number of bytes the server sent to Untangle (client-to-pipeline)
p2s_bytes To-Server Bytes bigint The number of bytes Untangle sent to server (pipeline-to-client)
filter_prefix Filter Block text The network filter that blocked the connection (filter,shield,invalid)
firewall_blocked Firewall Blocked boolean True if Firewall blocked the session, false otherwise
firewall_flagged Firewall Flagged boolean True if Firewall flagged the session, false otherwise
firewall_rule_index Firewall Rule ID integer The matching rule in Firewall (if any)
application_control_lite_protocol Application Control Lite Protocol text The application protocol according to Application Control Lite
application_control_lite_blocked Application Control Lite Blocked boolean True if Application Control Lite blocked the session
captive_portal_blocked Captive Portal Blocked boolean True if Captive Portal blocked the session
captive_portal_rule_index Captive Portal Rule ID integer The matching rule in Captive Portal (if any)
application_control_application Application Control Application text The application according to Application Control
application_control_protochain Application Control Protochain text The protochain according to Application Control
application_control_category Application Control Category text The category according to Application Control
application_control_blocked Application Control Blocked boolean True if Application Control blocked the session
application_control_flagged Application Control Flagged boolean True if Application Control flagged the session
application_control_confidence Application Control Confidence integer True if Application Control confidence of this session's identification
application_control_ruleid Application Control Rule ID integer The matching rule in Application Control (if any)
application_control_detail Application Control Detail text The text detail from the Application Control engine
bandwidth_control_priority Bandwidth Control Priority integer The priority given to this session
bandwidth_control_rule Bandwidth Control Rule ID integer The matching rule in Bandwidth Control rule (if any)
ssl_inspector_ruleid SSL Inspector Rule ID integer The matching rule in SSL Inspector rule (if any)
ssl_inspector_status SSL Inspector Status text The status/action of the SSL session (INSPECTED,IGNORED,BLOCKED,UNTRUSTED,ABANDONED)
ssl_inspector_detail SSL Inspector Detail text Additional text detail about the SSL connection (SNI, IP Address)
local_addr Local Address inet The IP address of the local participant
remote_addr Remote Address inet The IP address of the remote participant
tags Tags text The tags on this session

<section end='sessions' />


session_minutes

<section begin='session_minutes' />

Column Name Human Name Type Description
session_id Session ID bigint The session
time_stamp Timestamp timestamp without time zone The time of the event
c2s_bytes From-Client Bytes bigint The number of bytes the client sent
s2c_bytes From-Server Bytes bigint The number of bytes the server sent
start_time Start Time timestamp without time zone The start time of the session
end_time End Time timestamp without time zone The time the session ended
bypassed Bypassed boolean True if the session was bypassed, false otherwise
entitled Entitled boolean True if the session is entitled to premium functionality
protocol Protocol smallint The IP protocol of session
icmp_type ICMP Type smallint The ICMP type of session if ICMP
hostname Hostname text The hostname of the local address
username Username text The username associated with this session
policy_id Policy ID smallint The policy
policy_rule_id Policy Rule ID smallint The ID of the matching policy rule (0 means none)
c_client_addr Client-side Client Address inet The client-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
c_server_port Client-side Server Port integer The client-side server port
c_client_port Client-side Client Port integer The client-side client port
s_client_addr Server-side Client Address inet The server-side client IP address
s_server_addr Server-side Server Address inet The server-side server IP address
s_server_port Server-side Server Port integer The server-side server port
s_client_port Server-side Client Port integer The server-side client port
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
client_country Client Country text The client Country
client_latitude Client Latitude real The client Latitude
client_longitude Client Longitude real The client Longitude
server_country Server Country text The server Country
server_latitude Server Latitude real The server Latitude
server_longitude Server Longitude real The server Longitude
filter_prefix Filter Block text The network filter that blocked the connection (filter,shield,invalid)
firewall_blocked Firewall Blocked boolean True if Firewall blocked the session, false otherwise
firewall_flagged Firewall Flagged boolean True if Firewall flagged the session, false otherwise
firewall_rule_index Firewall Rule ID integer The matching rule in Firewall (if any)
application_control_lite_protocol Application Control Lite Protocol text The application protocol according to Application Control Lite
application_control_lite_blocked Application Control Lite Blocked boolean True if Application Control Lite blocked the session
captive_portal_blocked Captive Portal Blocked boolean True if Captive Portal blocked the session
captive_portal_rule_index Captive Portal Rule ID integer The matching rule in Captive Portal (if any)
application_control_application Application Control Application text The application according to Application Control
application_control_protochain Application Control Protochain text The protochain according to Application Control
application_control_category Application Control Category text The category according to Application Control
application_control_blocked Application Control Blocked boolean True if Application Control blocked the session
application_control_flagged Application Control Flagged boolean True if Application Control flagged the session
application_control_confidence Application Control Confidence integer True if Application Control confidence of this session's identification
application_control_ruleid Application Control Rule ID integer The matching rule in Application Control (if any)
application_control_detail Application Control Detail text The text detail from the Application Control engine
bandwidth_control_priority Bandwidth Control Priority integer The priority given to this session
bandwidth_control_rule Bandwidth Control Rule ID integer The matching rule in Bandwidth Control rule (if any)
ssl_inspector_ruleid SSL Inspector Rule ID integer The matching rule in SSL Inspector rule (if any)
ssl_inspector_status SSL Inspector Status text The status/action of the SSL session (INSPECTED,IGNORED,BLOCKED,UNTRUSTED,ABANDONED)
ssl_inspector_detail SSL Inspector Detail text Additional text detail about the SSL connection (SNI, IP Address)
local_addr Local Address inet The IP address of the local participant
remote_addr Remote Address inet The IP address of the remote participant
tags Tags text The tags on this session

<section end='session_minutes' />


quotas

<section begin='quotas' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
action Action integer The action (1=Quota Given, 2=Quota Exceeded)
size Size bigint The size of the quota
reason Reason text The reason for the action
entity Entity text The IP entity given the quota (address/username)

<section end='quotas' />


host_table_updates

<section begin='host_table_updates' />

Column Name Human Name Type Description
address Address inet The IP address of the host
key Key text The key being updated
value Value text The new value for the key
time_stamp Timestamp timestamp without time zone The time of the event
old_value Old Value text The old value for the key

<section end='host_table_updates' />


device_table_updates

<section begin='device_table_updates' />

Column Name Human Name Type Description
mac_address MAC Address text The MAC address of the device
key Key text The key being updated
value Value text The new value for the key
time_stamp Timestamp timestamp without time zone The time of the event
old_value Old Value text The old value for the key

<section end='device_table_updates' />


alerts

<section begin='alerts' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
description Text detail of the event text The description from the alert rule.
summary_text Summary Text text The summary text of the alert
json JSON Text text The summary JSON representation of the event causing the alert

<section end='alerts' />


settings_changes

<section begin='settings_changes' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
settings_file Settings File text The name of the file changed
username Username text The username logged in at the time of the change
hostname Hostname text The remote hostname

<section end='settings_changes' />


wan_failover_test_events

<section begin='wan_failover_test_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
interface_id Interface ID integer This interface ID
name Interface Name text This name of the interface
description Text detail of the event text The description from the test rule
success Success boolean The result of the test (true if the test succeeded, false otherwise)
event_id Event ID bigint The unique event ID

<section end='wan_failover_test_events' />


wan_failover_action_events

<section begin='wan_failover_action_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
interface_id Interface ID integer This interface ID
action Action text This action (CONNECTED,DISCONNECTED)
os_name Interface O/S Name text This O/S name of the interface
name Interface Name text This name of the interface
event_id Event ID bigint The unique event ID

<section end='wan_failover_action_events' />


mail_msgs

<section begin='mail_msgs' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
session_id Session ID bigint The session
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
c_client_addr Client-side Client Address inet The client-side client IP address
s_client_addr Server-side Client Address inet The server-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
s_server_addr Server-side Server Address inet The server-side server IP address
c_client_port Client-side Client Port integer The client-side client port
s_client_port Server-side Client Port integer The server-side client port
c_server_port Client-side Server Port integer The client-side server port
s_server_port Server-side Server Port integer The server-side server port
policy_id Policy ID bigint The policy
username Username text The username associated with this session
msg_id Message ID bigint The message ID
subject Subject text The email subject
hostname Hostname text The hostname of the local address
event_id Event ID bigint The unique event ID
sender Sender text The address of the sender
receiver Receiver text The address of the receiver
virus_blocker_lite_clean Virus Blocker Lite Clean boolean The cleanliness of the file according to Virus Blocker Lite
virus_blocker_lite_name Virus Blocker Lite Name text The name of the malware according to Virus Blocker Lite
virus_blocker_clean Virus Blocker Clean boolean The cleanliness of the file according to Virus Blocker
virus_blocker_name Virus Blocker Name text The name of the malware according to Virus Blocker
spam_blocker_lite_score Spam Blocker Lite Score real The score of the email according to Spam Blocker Lite
spam_blocker_lite_is_spam Spam Blocker Lite Spam boolean The spam status of the email according to Spam Blocker Lite
spam_blocker_lite_tests_string Spam Blocker Lite Tests text The tess results for Spam Blocker Lite
spam_blocker_lite_action Spam Blocker Lite Action character(1) The action taken by Spam Blocker Lite
spam_blocker_score Spam Blocker Score real The score of the email according to Spam Blocker
spam_blocker_is_spam Spam Blocker Spam boolean The spam status of the email according to Spam Blocker
spam_blocker_tests_string Spam Blocker Tests text The tess results for Spam Blocker
spam_blocker_action Spam Blocker Action character(1) The action taken by Spam Blocker
phish_blocker_score Phish Blocker Score real The score of the email according to Phish Blocker
phish_blocker_is_spam Phish Blocker Phish boolean The phish status of the email according to Phish Blocker
phish_blocker_tests_string Phish Blocker Tests text The tess results for Phish Blocker
phish_blocker_action Phish Blocker Action character(1) The action taken by Phish Blocker

<section end='mail_msgs' />


mail_addrs

<section begin='mail_addrs' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
session_id Session ID bigint The session
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
c_client_addr Client-side Client Address inet The client-side client IP address
s_client_addr Server-side Client Address inet The server-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
s_server_addr Server-side Server Address inet The server-side server IP address
c_client_port Client-side Client Port integer The client-side client port
s_client_port Server-side Client Port integer The server-side client port
c_server_port Client-side Server Port integer The client-side server port
s_server_port Server-side Server Port integer The server-side server port
policy_id Policy ID bigint The policy
username Username text The username associated with this session
msg_id Message ID bigint The message ID
subject Subject text The email subject
addr Address text The address of this event
addr_name Address Name text The name for this address
addr_kind Address Kind character(1) The type for this address (F=From, T=To, C=CC, G=Envelope From, B=Envelope To, X=Unknown)
hostname Hostname text The hostname of the local address
event_id Event ID bigint The unique event ID
sender Sender text The address of the sender
virus_blocker_lite_clean Virus Blocker Lite Clean boolean The cleanliness of the file according to Virus Blocker Lite
virus_blocker_lite_name Virus Blocker Lite Name text The name of the malware according to Virus Blocker Lite
virus_blocker_clean Virus Blocker Clean boolean The cleanliness of the file according to Virus Blocker
virus_blocker_name Virus Blocker Name text The name of the malware according to Virus Blocker
spam_blocker_lite_score Spam Blocker Lite Score real The score of the email according to Spam Blocker Lite
spam_blocker_lite_is_spam Spam Blocker Lite Spam boolean The spam status of the email according to Spam Blocker Lite
spam_blocker_lite_action Spam Blocker Lite Action character(1) The action taken by Spam Blocker Lite
spam_blocker_lite_tests_string Spam Blocker Lite Tests text The tess results for Spam Blocker Lite
spam_blocker_score Spam Blocker Score real The score of the email according to Spam Blocker
spam_blocker_is_spam Spam Blocker Spam boolean The spam status of the email according to Spam Blocker
spam_blocker_action Spam Blocker Action character(1) The action taken by Spam Blocker
spam_blocker_tests_string Spam Blocker Tests text The tess results for Spam Blocker
phish_blocker_score Phish Blocker Score real The score of the email according to Phish Blocker
phish_blocker_is_spam Phish Blocker Phish boolean The phish status of the email according to Phish Blocker
phish_blocker_tests_string Phish Blocker Tests text The tess results for Phish Blocker
phish_blocker_action Phish Blocker Action character(1) The action taken by Phish Blocker

<section end='mail_addrs' />


smtp_tarpit_events

<section begin='smtp_tarpit_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
ipaddr Client Address inet The client IP address
hostname Hostname text The hostname of the local address
policy_id Policy ID bigint The policy
vendor_name Vendor Name character varying(255) The "vendor name" of the app that logged the event
event_id Event ID bigint The unique event ID

<section end='smtp_tarpit_events' />


http_events

<section begin='http_events' />

Column Name Human Name Type Description
request_id Request ID bigint The HTTP request ID
time_stamp Timestamp timestamp without time zone The time of the event
session_id Session ID bigint The session
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
c_client_addr Client-side Client Address inet The client-side client IP address
s_client_addr Server-side Client Address inet The server-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
s_server_addr Server-side Server Address inet The server-side server IP address
c_client_port Client-side Client Port integer The client-side client port
s_client_port Server-side Client Port integer The server-side client port
c_server_port Client-side Server Port integer The client-side server port
s_server_port Server-side Server Port integer The server-side server port
policy_id Policy ID smallint The policy
username Username text The username associated with this session
hostname Hostname text The hostname of the local address
method Method character(1) The HTTP method
uri URI text The HTTP URI
host Host text The HTTP host
domain Domain text The HTTP domain (shortened host)
referer Referer text The Referer URL
c2s_content_length Client-to-server Content Length bigint The client-to-server content length
s2c_content_length Server-to-client Content Length bigint The server-to-client content length
s2c_content_type Server-to-client Content Type text The server-to-client content type
ad_blocker_cookie_ident Ad Blocker Cookie text This name of cookie blocked by Ad Blocker
ad_blocker_action Ad Blocker Action character(1) This action of Ad Blocker on this request
web_filter_reason Web Filter Reason character(1) This reason Web Filter blocked/flagged this request
web_filter_category_id Web Filter Category ID int This category ID according to Web Filter
web_filter_blocked Web Filter Blocked boolean If Web Filter blocked this request
web_filter_flagged Web Filter Flagged boolean If Web Filter flagged this request
virus_blocker_lite_clean Virus Blocker Lite Clean boolean The cleanliness of the file according to Virus Blocker Lite
virus_blocker_lite_name Virus Blocker Lite Name text The name of the malware according to Virus Blocker Lite
virus_blocker_clean Virus Blocker Clean boolean The cleanliness of the file according to Virus Blocker
virus_blocker_name Virus Blocker Name text The name of the malware according to Virus Blocker

<section end='http_events' />

ftp_events

<section begin='ftp_events' />

Column Name Human Name Type Description
event_id Event ID bigint The unique event ID
time_stamp Timestamp timestamp without time zone The time of the event
session_id Session ID bigint The session
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
c_client_addr Client-side Client Address inet The client-side client IP address
s_client_addr Server-side Client Address inet The server-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
s_server_addr Server-side Server Address inet The server-side server IP address
policy_id Policy ID bigint The policy
username Username text The username associated with this session
hostname Hostname text The hostname of the local address
request_id Request ID bigint The FTP request ID
method Method character(1) The FTP method
uri URI text The FTP URI
virus_blocker_lite_clean Virus Blocker Lite Clean boolean The cleanliness of the file according to Virus Blocker Lite
virus_blocker_lite_name Virus Blocker Lite Name text The name of the malware according to Virus Blocker Lite
virus_blocker_clean Virus Blocker Clean boolean The cleanliness of the file according to Virus Blocker
virus_blocker_name Virus Blocker Name text The name of the malware according to Virus Blocker

<section end='ftp_events' />


ipsec_user_events

<section begin='ipsec_user_events' />

Column Name Human Name Type Description
event_id Event ID bigint The unique event ID
time_stamp Timestamp timestamp without time zone The time of the event
connect_stamp Connect Time timestamp without time zone The time the connection started
goodbye_stamp End Time timestamp without time zone The time the connection ended
client_address Client Address text The remote IP address of the client
client_protocol Client Protocol text The protocol the client used to connect
client_username Client Username text The username of the client
net_process Net Process text The PID of the PPP process for L2TP connections or the connection ID for Xauth connections
net_interface Net Interface text The PPP interface for L2TP connections or the client interface for Xauth connections
elapsed_time Elapsed Time text The total time the client was connected
rx_bytes Bytes Received bigint The number of bytes received from the client in this connection
tx_bytes Bytes Sent bigint The number of bytes sent to the client in this connection

<section end='ipsec_user_events' />


ipsec_tunnel_stats

<section begin='ipsec_tunnel_stats' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
tunnel_name Tunnel Name text The name of the IPsec tunnel
in_bytes In Bytes bigint The number of bytes received during this time frame
out_bytes Out Bytes bigint The number of bytes transmitted during this time frame
event_id Event ID bigint The unique event ID

<section end='ipsec_tunnel_stats' />


interface_stat_events

<section begin='interface_stat_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
interface_id Interface ID integer The interface ID
rx_rate Rx Rate double precision The RX rate (bytes/s)
tx_rate Tx Rate double precision The TX rate (bytes/s)

<section end='interface_stat_events' />


configuration_backup_events

<section begin='configuration_backup_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
success Success boolean The result of the backup (true if the backup succeeded, false otherwise)
description Text detail of the event text Text detail of the event
destination Destination text The location of the backup
event_id Event ID bigint The unique event ID

<section end='configuration_backup_events' />


directory_connector_login_events

<section begin='directory_connector_login_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
login_name Login Name text The login name
domain Domain text The AD domain
type Type text The type of event (I=Login,U=Update,O=Logout)
client_addr Client Address inet The client IP address

<section end='directory_connector_login_events' />


server_events

<section begin='server_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
load_1 CPU load (1-min) numeric(6,2) The 1-minute CPU load
load_5 CPU load (5-min) numeric(6,2) The 5-minute CPU load
load_15 CPU load (15-min) numeric(6,2) The 15-minute CPU load
cpu_user CPU User Utilization numeric(6,3) The user CPU percent utilization
cpu_system CPU System Utilization numeric(6,3) The system CPU percent utilization
mem_total Total Memory bigint The total bytes of memory
mem_free Memory Free bigint The number of free bytes of memory
disk_total Disk Size bigint The total disk size in bytes
disk_free Disk Free bigint The free disk space in bytes
swap_total Swap Size bigint The total swap size in bytes
swap_free Swap Free bigint The free disk swap in bytes
active_hosts Active Hosts integer The number of active hosts

<section end='server_events' />


web_cache_stats

<section begin='web_cache_stats' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
hits Hits bigint The number of cache hits during this time frame
misses Misses bigint The number of cache misses during this time frame
bypasses Bypasses bigint The number of cache user bypasses during this time frame
systems System bypasses bigint The number of cache system bypasses during this time frame
hit_bytes Hit Bytes bigint The number of bytes saved from cache hits
miss_bytes Miss Bytes bigint The number of bytes not saved from cache misses
event_id Event ID bigint The unique event ID

<section end='web_cache_stats' />


http_query_events

<section begin='http_query_events' />

Column Name Human Name Type Description
event_id Event ID bigint The unique event ID
time_stamp Timestamp timestamp without time zone The time of the event
session_id Session ID bigint The session
client_intf Client Interface smallint The client interface
server_intf Server Interface smallint The server interface
c_client_addr Client-side Client Address inet The client-side client IP address
s_client_addr Server-side Client Address inet The server-side client IP address
c_server_addr Client-side Server Address inet The client-side server IP address
s_server_addr Server-side Server Address inet The server-side server IP address
c_client_port Client-side Client Port integer The client-side client port
s_client_port Server-side Client Port integer The server-side client port
c_server_port Client-side Server Port integer The client-side server port
s_server_port Server-side Server Port integer The server-side server port
policy_id Policy ID bigint The policy
username Username text The username associated with this session
hostname Hostname text The hostname of the local address
request_id Request ID bigint The HTTP request ID
method Method character(1) The HTTP method
uri URI text The HTTP URI
term Search Term text The search term
host Host text The HTTP host
c2s_content_length Client-to-server Content Length bigint The client-to-server content length
s2c_content_length Server-to-client Content Length bigint The server-to-client content length
s2c_content_type Server-to-client Content Type text The server-to-client content type

<section end='http_query_events' />


captive_portal_user_events

<section begin='captive_portal_user_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
policy_id Policy ID bigint The policy
event_id Event ID bigint The unique event ID
login_name Login Name text The login username
event_info Event Type text The type of event (LOGIN, FAILED, TIMEOUT, INACTIVE, USER_LOGOUT, ADMIN_LOGOUT)
auth_type Authorization Type text The authorization type for this event
client_addr Client Address text The remote IP address of the client

<section end='captive_portal_user_events' />


openvpn_stats

<section begin='openvpn_stats' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
start_time Start Time timestamp without time zone The time the OpenVPN session started
end_time End Time timestamp without time zone The time the OpenVPN session ended
rx_bytes Bytes Received bigint The total bytes received from the client during this session
tx_bytes Bytes Sent bigint The total bytes sent to the client during this session
remote_address Remote Address inet The remote IP address of the client
pool_address Pool Address inet The pool IP address of the client
remote_port Remote Port integer The remote port of the client
client_name Client Name text The name of the client
event_id Event ID bigint The unique event ID

<section end='openvpn_stats' />


openvpn_events

<section begin='openvpn_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
remote_address Remote Address inet The remote IP address of the client
pool_address Pool Address inet The pool IP address of the client
client_name Client Name text The name of the client
type Type text The type of the event (CONNECT,DISCONNECT)

<section end='openvpn_events' />


intrusion_prevention_events

<section begin='intrusion_prevention_events' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
sig_id Signature ID bigint This ID of the rule
gen_id Grouping ID bigint The grouping ID for the rule, The gen_id + sig_id specify the rule's unique identifier
class_id Classtype ID bigint The numeric ID for the classtype
source_addr Source Address inet The source IP address of the packet
source_port Source Port integer The source port of the packet (if applicable)
dest_addr Destination Address inet The destination IP address of the packet
dest_port Destination Port integer The destination port of the packet (if applicable)
protocol Protocol integer The protocol of the packet
blocked Blocked boolean If the packet was blocked/dropped
category Category text The application specific grouping
classtype Classtype text The generalized threat rule grouping (unrelated to gen_id)
msg Message text The "title" or "description" of the rule

<section end='intrusion_prevention_events' />


syslog

<section begin='syslog' />

Column Name Human Name Type Description
time_stamp Timestamp timestamp without time zone The time of the event
description Text detail of the event text The description from the alert rule.
summary_text Summary Text text The summary text of the alert
json JSON Text text The summary JSON representation of the event causing the alert

<section end='syslog' />


user_table_updates

<section begin='user_table_updates' />

Column Name Human Name Type Description
username Username text The username
key Key text The key being updated
value Value text The new value for the key
old_value Old Value text The old value for the key
time_stamp Timestamp timestamp without time zone The time of the event

<section end='user_table_updates' />