Contains information pertaining to the event that caused a POLICY to trigger.
- When an ACTIONSET is applied to a POLICY and it has a Management Console notification selected, it is put in the ALERTS table.
- The primary key, a unique key, is a four column index, DEVICE_ID, ALERT_TYPE_ID, SEQUENCE_NUM, and END_TIME.
- The table is expected to have a continuous growth pattern and contain millions of records.
Definition
dbAccess/tptDBServlet?method=GetData&table=ALERTS
Parameters
| Column | Description |
| SEQUENCE_NUM | Reference to a particular logs row entry counter.
|
| DEVICE_ID | Identifier for the DEVICE entry that sent the notification.
|
| ALERT_TYPE_ID | The TYPE column is the third and final primary key constraint on the ALERTS table.
|
| POLICY_ID | Identifier used to map this alert to a POLICY table entry. |
| SIGNATURE_ID | Identifier used to map this alert to a SIGNATURE table entry. |
| BEGIN_TIME | Time at which the event was first started or previously logged.
|
| END_TIME | Time at which the notification was logged and sent to the Management Console.
|
| HIT_COUNT | Counter displaying the number of times the event triggered before the notification was sent to the Management Console. |
| SRC_IP_ADDR | Source IP of the packet causing the notification. Numeric value of an IPv4 address, or the low-order 64 bits for an IPv6 address if SRC_IP_ADDR_HIGH is not NULL. |
| SRC_IP_ADDR_HIGH | Source IP of the packet causing the notification. Numeric value of high-order 64 bits for an IPv6 address. |
| SRC_PORT | Source port of the packet causing the notification. |
| DST_IP_ADDR | Destination IP of the packet causing the notification. Numeric value of an IPv4 address, or the low-order 64 bits for an IPv6 address if DST_IP_ADDR_HIGH is not NULL. |
| DST_IP_ADDR_HIGH | Destination IP of the packet causing the notification. Numeric value of high-order 64 bits for an IPv6 address. |
| DST_PORT | Destination port of the packet causing the notification. |
| VIRTUAL_SEGMENT_INDEX | Identifier for which device segment this alert was seen on. |
| PHYSICAL_PORT_IN | Device port on which the event was detected. |
| VLAN_TAG | VLAN identifier contained in the event. |
| SEVERITY | SEVERITY of the event. Usually corresponds to the SIGNATURE.SEVERITY column, joined by the SIGNATURE_ID column. A foreign key constraint to the SEVERITY table has been applied here. |
| PACKET_TRACE | Indicates if a packet trace is available on the device. |
| DEVICE_TRACE_BUCKET | Part of the device packet trace identifier. |
| DEVICE_TRACE_BEGIN_SEQ | Part of the device packet trace identifier. |
| DEVICE_TRACE_END_SEQ | Part of the device packet trace identifier. |
| MESSAGE_PARMS | Variable list of message parameters.
Example
MESSAGE_PARMS=Austin|Texas SIGNATURE.MESSAGE=%1 is in %2.
The preceding parameters and message generates the following message:
Austin is in Texas.
|
| QUARANTINE_ACTION | Quarantine action taken, either Added or Removed; used only in quarantine logs. |
| FLOW_CONTROL | Action taken by the action set: Permit, Rate Limit, or Trust. |
| ACTION_SET_UUID | Action set UUID; used only in rate limit logs. |
| ACTION_SET_NAME | Rate limit action; used only in rate limit logs. |
| RATE_LIMIT_RATE | Rate for rate limit logs; a numerical value followed by a unit. The unit can be Kbps or Mbps. |
| CLIENT_IP_ADDR | Long value of the Client IP address (Capture Additional Event Information must be enabled). |
| CLIENT_IP_ADDR_HIGH | Long value of the Client IP address (Capture Additional Event Information must be enabled). For IPV6 only. |
| XFF_IP_ADDR | Long value of the X-Forwarded-For IP address (Capture Additional Event Information must be enabled). |
| XFF_IP_ADDR_HIGH | Long value of the X-Forwarded-For IP address (Capture Additional Event Information must be enabled). For IPV6 only. |
| TCIP_IP_ADDR | Long value of the True-Client-IP address (Capture Additional Event Information must be enabled). |
| TCIP_IP_ADDR_HIGH | Long value of the True-Client-IP address (Capture Additional Event Information must be enabled). For IPV6 only. |
| URI_METHOD | Method of the URI. |
| URI_HOST | Host of the URI. |
| URI_STRING | URI string. |
| SRC_USER_NAME | User name on the source machine.
|
| SRC_DOMAIN | Name of the source domain. |
| SRC_MACHINE | Name of the source machine. |
| DST_USER_NAME | User name on the destination machine. |
| DST_DOMAIN | Name of the destination domain |
| DST_MACHINE | Name of the destination machine. |
