Collect Linux auditd and AIX systems logs

Supported in:

This document describes how to collect Linux audit logs from auditd and AIX systems, transforming them into UDM. The parser handles both JSON-formatted and plain text log messages, extracting fields using grok, XML parsing, and JSON parsing techniques, and mapping them to appropriate UDM fields based on the event type. The parser also handles specific audit log formats from AIX systems and enriches the UDM with additional fields like security_result and intermediary details.

There are two primary methods to collect auditd logs: from the local log file or using syslog. Regardless of the method, certain general configurations are required in auditd.

Before you begin

  • Ensure that you have a Google Security Operations instance.
  • Ensure that you have root access to the Auditd host.
  • Ensure that you have a Windows 2012 SP2 or later or Linux host with systemd for the Bindplane agent.
  • If running behind a proxy, ensure that the firewall ports are open.
  • For syslog-based collection, ensure that rsyslog is installed on the Auditd host.

Get the Google SecOps ingestion authentication file

  1. Sign in to the Google SecOps console.
  2. Go to SIEM Settings > Collection Agents.
  3. Download the Ingestion Authentication File.

Get your Google SecOps customer ID

  1. Sign in to the Google SecOps console.
  2. Go to SIEM Settings > Profile.
  3. Copy and save the Customer ID from the Organization Details section.

Install the Bindplane agent

The Bindplane agent collects logs from various sources and sends them to Google SecOps. You can install the agents on-premises or in the cloud. The Bindplane agent can also be referred to as Bindplane collector, collection agent, collector, or agent. For more information and additional installation options, see Use Bindplane with Google SecOps.

  • For Windows installation, run the following script:
    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
  • For Linux installation, run the following script:
    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh

General AuditD configuration

To ensure that auditd logs contain necessary source information, such as the hostname, complete the following steps:

  1. Install the required packages. Install the audit daemon and the audispd plugins (required for syslog forwarding on many distributions).

    • RHEL/CentOS: bash sudo yum install audit audispd-plugins
    • Ubuntu/Debian: bash sudo apt-get install auditd audispd-plugins
  2. Configure AuditD to include the hostname. Edit the Audit daemon configuration file at /etc/audit/auditd.conf and update the name_format option:

      # Add or update the following line:
      name_format = hostname
    
  3. Configure audit rules. Define your audit rules in /etc/audit/rules.d/audit.rules so that they persist after a reboot. For example, to audit process executions for both 32-bit and 64-bit architectures, add:

    -a always,exit -F arch=b64 -S execve -k execve
    -a always,exit -F arch=b32 -S execve -k execve
    

    You can substitute these rules with your own rules.

  4. Restart AuditD. Restart the service to apply changes:

    sudo systemctl restart auditd
    

Collection method 1: File-based ingestion

This method involves using a local Bindplane agent to read the raw audit log file directly from /var/log/audit/audit.log on the disk.

To configure the Bindplane agent for file ingestion, do the following:

  1. Edit the config.yaml file on the machine where Bindplane is installed to monitor the AuditD log file:

    receivers:
      filelog/auditd:
        include: [ "/var/log/audit/audit.log" ]
        start_at: end
        read_batch_size: 65536
        poll_interval: 1s
    exporters:
      chronicle/auditd_file:
        compression: gzip
        # Adjust the creds location below according to the placement of the credentials file you downloaded.
        creds: '{ json file for creds }'
        # Replace CUSTOMER_ID with your actual ID that you copied.
        customer_id: CUSTOMER_ID
        endpoint: malachiteingestion-pa.googleapis.com
        # You can apply ingestion labels below as preferred.
        ingestion_labels:
          log_type: AUDITD
          namespace: auditd
          raw_log_field: body
    service:
      pipelines:
        logs/auditd_file_to_chronicle:
          receivers:
            - filelog/auditd
          exporters:
            - chronicle/auditd_file
    
  2. Restart the Bindplane agent:
    sudo systemctl restart bindplane

Collection method 2: Syslog-based ingestion

This method uses the Audit dispatcher (audispd) to send logs to the local rsyslog daemon, which then forwards the events. A Bindplane agent is configured to receive these syslog messages.

Step 1: Configure AuditD syslog plugin

You must activate the syslog plugin to route audit logs to a syslog facility. Depending on your Linux distribution and Audit version, edit either /etc/audisp/plugins.d/syslog.conf (older systems) or /etc/audit/plugins.d/syslog.conf (Audit 3.0 and later):

active = yes
direction = out
path = builtin_syslog
type = builtin
args = LOG_LOCAL6
format = string

Step 2: Configure rsyslog forwarding

Create a dedicated rsyslog configuration file at /etc/rsyslog.d/50-auditd.conf (or update an existing file like 50-default.conf) to redirect the LOCAL6 facility.

Option A: Forward to a remote Bindplane agent

If your Bindplane agent is hosted remotely, specify its IP address (REMOTE_BINDPLANE_IP) and listening port (for example, port 11655):

local6.* @@REMOTE_BINDPLANE_IP:11655

Option B: Forward to a local listener

If you are running a local collection agent that listens for syslog traffic on a specific port on the same host, specify the LOCAL_LISTENER_PORT:

local6.* @@127.0.0.1:LOCAL_LISTENER_PORT

Step 3: Configure the Bindplane agent for syslog ingestion

Edit the config.yaml file on the machine where Bindplane is installed to listen for syslog messages. This configuration assumes you are using TCP on port 11655, matching the examples in Step 2.

receivers:
    tcplog:
    listen_address: "0.0.0.0:11655"

exporters:
    chronicle/auditd_syslog:
    compression: gzip
    # Adjust the creds location below according to the placement of the credentials file you downloaded.
    creds: '{ json file for creds }'
    # Replace CUSTOMER_ID below with your actual ID that you copied.
    customer_id: CUSTOMER_ID
    endpoint: malachiteingestion-pa.googleapis.com
    # You can apply ingestion labels below as preferred.
    ingestion_labels:
        log_type: SYSLOG
        namespace: auditd
        raw_log_field: body
service:
    pipelines:
    logs/auditd_syslog_to_chronicle:
        receivers:
        - tcplog
        exporters:
        - chronicle/auditd_syslog

Step 4: Restart the necessary services

Restart the following services so that the syslog routing and Bindplane configuration take effect:

sudo systemctl restart auditd
sudo systemctl restart rsyslog
sudo systemctl restart bindplane

You can use a tool like tail to monitor the syslog and verify that Auditd logs are being sent:

tail -f /var/log/syslog | grep auditd 
# Follow syslog and filter for auditd messages (the path may vary depending on your system).

Supported Linux Auditing System (AuditD) sample logs

  • SYSLOG + KV (Linux AuditD)

    events_for_log_entry:  {
    events:  {
      timestamp:  {
        seconds:  1718778607
        nanos:  898000000
      }
      idm:  {
        read_only_udm:  {
          metadata:  {
            product_log_id:  "5512409"
            event_timestamp:  {
              seconds:  1718778607
              nanos:  898000000
            }
            event_type:  USER_LOGIN
            vendor_name:  "Linux"
            product_name:  "AuditD"
            product_event_type:  "USER_AUTH"
          }
          principal:  {
            hostname:  "sec-dev-01.internal"
            user:  {
              userid:  "0"
              user_display_name:  "secuser"
            }
            process:  {
              pid:  "3306219"
            }
            asset:  {
              hostname:  "sec-dev-01.internal"
              ip:  "192.168.1.5"
            }
            ip:  "192.168.1.5"
            application:  "ssh"
            platform:  LINUX
          }
          target:  {
            user:  {
              userid:  "0"
              user_display_name:  "secuser"
            }
            process:  {
              file:  {
                full_path:  "/usr/sbin/secure_shell"
              }
            }
          }
          intermediary:  {
            hostname:  "sec-dev-01.internal"
          }
          about:  {
            user:  {
              userid:  "sysadmin"
              user_display_name:  "unset"
            }
          }
          security_result:  {
            detection_fields:  {
              key:  "AUID0"
              value:  "unset"
            }
            detection_fields:  {
              key:  "UID0"
              value:  "sysadmin"
            }
            detection_fields:  {
              key:  "acct0"
              value:  "secuser"
            }
            detection_fields:  {
              key:  "addr0"
              value:  "192.168.1.5"
            }
            detection_fields:  {
              key:  "auid0"
              value:  "sysadmin"
            }
            detection_fields:  {
              key:  "exe0"
              value:  "/usr/sbin/secure_shell"
            }
            detection_fields:  {
              key:  "grantors0"
              value:  "pam_unix"
            }
            detection_fields:  {
              key:  "hostname0"
              value:  "192.168.1.5"
            }
            detection_fields:  {
              key:  "msg0"
              value:  "op=PAM:authentication"
            }
            detection_fields:  {
              key:  "pid0"
              value:  "3306219"
            }
            detection_fields:  {
              key:  "res0"
              value:  "success"
            }
            detection_fields:  {
              key:  "ses0"
              value:  "4294967295"
            }
            detection_fields:  {
              key:  "terminal0"
              value:  "ssh"
            }
            detection_fields:  {
              key:  "uid0"
              value:  "0"
            }
            detection_fields:  {
              key:  "AUID_kv0"
              value:  "AUID0:unset"
            }
            detection_fields:  {
              key:  "UID_kv0"
              value:  "UID0:sysadmin"
            }
            detection_fields:  {
              key:  "acct_kv0"
              value:  "acct0:secuser"
            }
            detection_fields:  {
              key:  "addr_kv0"
              value:  "addr0:192.168.1.5"
            }
            detection_fields:  {
              key:  "auid_kv0"
              value:  "auid0:sysadmin"
            }
            detection_fields:  {
              key:  "exe_kv0"
              value:  "exe0:/usr/sbin/secure_shell"
            }
            detection_fields:  {
              key:  "grantors_kv0"
              value:  "grantors0:pam_unix"
            }
            detection_fields:  {
              key:  "hostname_kv0"
              value:  "hostname0:192.168.1.5"
            }
            detection_fields:  {
              key:  "msg_kv0"
              value:  "msg0:op=PAM:authentication"
            }
            detection_fields:  {
              key:  "pid_kv0"
              value:  "pid0:3306219"
            }
            detection_fields:  {
              key:  "res_kv0"
              value:  "res0:success"
            }
            detection_fields:  {
              key:  "ses_kv0"
              value:  "ses0:4294967295"
            }
            detection_fields:  {
              key:  "terminal_kv0"
              value:  "terminal0:ssh"
            }
            detection_fields:  {
              key:  "uid_kv0"
              value:  "uid0:0"
            }
            summary:  "authentication secuser"
            action:  ALLOW
            action_details:  "success"
          }
          network:  {
            session_id:  "4294967295"
            application_protocol:  SSH
          }
          extensions:  {
            auth:  {}
          }
        }
      }
    }
    }
    
  • SYSLOG (Generic)

    events_for_log_entry:  {
    events:  {
      timestamp:  {
        seconds:  1754848621
      }
      idm:  {
        read_only_udm:  {
          metadata:  {
            event_timestamp:  {
              seconds:  1754848621
            }
            event_type:  PROCESS_LAUNCH
            vendor_name:  "Linux"
            product_name:  "AuditD"
            product_event_type:  "CROND"
            description:  "(monitorsvc) CMD (/opt/monitor/bin/scheduler -j /opt/monitor/cache/jobs/check.jx)"
          }
          principal:  {
            hostname:  "log-host-05"
            user:  {
              userid:  "monitorsvc"
            }
            process:  {
              pid:  "124662"
            }
            asset:  {
              hostname:  "log-host-05"
            }
            platform:  LINUX
          }
          target:  {
            process:  {
              command_line:  "/opt/monitor/bin/scheduler -j /opt/monitor/cache/jobs/check.jx"
            }
          }
          intermediary:  {
            hostname:  "log-host-05"
          }
        }
      }
    }
    }
    
  • JSON (Cloud Storage Logging or Auditbeat)

    events_for_log_entry:  {
    events:  {
      timestamp:  {
        seconds:  1611615589
        nanos:  212000000
      }
      idm:  {
        read_only_udm:  {
          metadata:  {
            product_log_id:  "32946"
            event_timestamp:  {
              seconds:  1611615589
              nanos:  212000000
            }
            collected_timestamp:  {
              seconds:  1609752843
              nanos:  349722230
            }
            event_type:  SERVICE_START
            vendor_name:  "Linux"
            product_name:  "AuditD"
            product_event_type:  "SERVICE_START"
          }
          additional:  {
            fields:  {
              key:  "insertId"
              value:  {
                string_value:  "tf9cuofcnbn6i"
              }
            }
            fields:  {
              key:  "logName"
              value:  {
                string_value:  "projects/prj-secops-dev/logs/auditd"
              }
            }
          }
          principal:  {
            hostname:  "gce-test-web"
            user:  {
              userid:  "0"
            }
            process:  {
              pid:  "1"
            }
            asset:  {
              hostname:  "gce-test-web"
            }
            application:  "sysmgr"
            platform:  LINUX
          }
          target:  {
            process:  {
              file:  {
                full_path:  "/usr/bin/sysmgr"
              }
            }
            cloud:  {
              project:  {
                name:  "prj-secops-dev"
              }
            }
            resource:  {
              resource_subtype:  "gce_instance"
              product_object_id:  "1000000000000000001"
              attribute:  {
                cloud:  {
                  availability_zone:  "us-east4-a"
                }
              }
            }
          }
          about:  {
            user:  {
              userid:  "9001"
              user_display_name:  "unset"
            }
          }
          security_result:  {
            detection_fields:  {
              key:  "AUID0"
              value:  "unset"
            }
            detection_fields:  {
              key:  "UID0"
              value:  "secsvc"
            }
            detection_fields:  {
              key:  "auid0"
              value:  "9001"
            }
            detection_fields:  {
              key:  "comm0"
              value:  "sysmgr"
            }
            detection_fields:  {
              key:  "exe0"
              value:  "/usr/bin/sysmgr"
            }
            detection_fields:  {
              key:  "msg0"
              value:  "unit=gce-cert-renew"
            }
            detection_fields:  {
              key:  "pid0"
              value:  "1"
            }
            detection_fields:  {
              key:  "res0"
              value:  "success"
            }
            detection_fields:  {
              key:  "ses0"
              value:  "4294967295"
            }
            detection_fields:  {
              key:  "subj0"
              value:  "system_u:system_r:init_t:s0"
            }
            detection_fields:  {
              key:  "uid0"
              value:  "0"
            }
            detection_fields:  {
              key:  "AUID_kv0"
              value:  "AUID0:unset"
            }
            detection_fields:  {
              key:  "UID_kv0"
              value:  "UID0:secsvc"
            }
            detection_fields:  {
              key:  "auid_kv0"
              value:  "auid0:9001"
            }
            detection_fields:  {
              key:  "comm_kv0"
              value:  "comm0:sysmgr"
            }
            detection_fields:  {
              key:  "exe_kv0"
              value:  "exe0:/usr/bin/sysmgr"
            }
            detection_fields:  {
              key:  "msg_kv0"
              value:  "msg0:unit=gce-cert-renew"
            }
            detection_fields:  {
              key:  "pid_kv0"
              value:  "pid0:1"
            }
            detection_fields:  {
              key:  "res_kv0"
              value:  "res0:success"
            }
            detection_fields:  {
              key:  "ses_kv0"
              value:  "ses0:4294967295"
            }
            detection_fields:  {
              key:  "subj_kv0"
              value:  "subj0:system_u:system_r:init_t:s0"
            }
            detection_fields:  {
              key:  "uid_kv0"
              value:  "uid0:0"
            }
            summary:  "unit=gce-cert-renew success"
            action:  ALLOW
            action_details:  "success"
          }
          network:  {
            session_id:  "4294967295"
          }
        }
      }
    }
    }
    
  • JSON (Windows Event)

    JSON (Windows Event)
    events_for_log_entry:  {
    events:  {
      timestamp:  {
        seconds:  1711012395
        nanos:  723000000
      }
      idm:  {
        read_only_udm:  {
          metadata:  {
            event_timestamp:  {
              seconds:  1711012395
              nanos:  723000000
            }
            event_type:  USER_LOGIN
            vendor_name:  "Microsoft"
            product_name:  "Microsoft-Windows-Security-Auditing"
            product_event_type:  "4624"
            description:  "An account was successfully logged on"
          }
          additional:  {
            fields:  {
              key:  "Message"
              value:  {
                string_value:  "An account was successfully logged on."
                               "Subject:Security ID:S-1-0-0"
                               "Account Name:-... (omitted for brevity) ..."
                               "New Logon:Security ID:S-1-5-21-1234567890-123456789-1234567890-2001"
                               "Account Name:svc_log_collector"
                               "Account Domain:SEC_LAB... (omitted for brevity) ..."
                               "Network Information:"
                               "Workstation Name:DEV-WS-42"
                               "Source Network Address:172.16.1.100"
                               "Source Port:53856..."
              }
            }
            fields:  {
              key:  "Workstation Name"
              value:  {
                string_value:  "DEV-WS-42"
              }
            }
          }
          principal:  {
            hostname:  "DEV-WS-42"
            process:  {}
            asset:  {
              hostname:  "DEV-WS-42"
              ip:  "172.16.1.100"
            }
            ip:  "172.16.1.100"
            port:  53856
            labels:  {
              key:  "Workstation Name"
              value:  "DEV-WS-42"
            }
          }
          target:  {
            user:  {
              userid:  "svc_log_collector"
              windows_sid:  "S-1-5-21-1234567890-123456789-1234567890-2001"
            }
            administrative_domain:  "SEC_LAB"
          }
          intermediary:  {
            hostname:  "win-server-01"
          }
          security_result:  {
            rule_name:  "EventID: 4624"
            action:  ALLOW
          }
          extensions:  {
            auth:  {
              mechanism:  MECHANISM_UNSPECIFIED
            }
          }
        }
      }
    }
    }
    
  • SYSLOG + XML (Solaris AuditD)

    {
      "events_for_log_entry": {
        "events": {
          "timestamp": {
            "seconds": 1735824379
          },
          "idm": {
            "read_only_udm": {
              "metadata": {
                "product_log_id": "1638473100678580410",
                "event_timestamp": {
                  "seconds": 1735824379
                },
                "event_type": "PROCESS_LAUNCH",
                "vendor_name": "Linux",
                "product_name": "AuditD",
                "product_version": "2",
                "product_event_type": "AUE_EXECVE",
                "description": "<record version=\"2\" event=\"23\" host=\"192.0.2.1\" iso8601=\"1638473100678580410\">\n"
                               "  <ntrs hostname=\"sanitized-host-01\" eventstring=\"AUE_EXECVE\" timestamp=\"1638473100.678580410\" ppid=\"2853\"></ntrs>\n"
                               "  <path>/usr/bin/find</path>\n"
                               "  <attribute mode=\"100555\" uid=\"0\" gid=\"2\" fsid=\"256\" nodeid=\"722\" device=\"18446744073709551615\"/>\n"
                               "  <exec_args>\n"
                               "    <arg>find</arg>\n"
                               "    <arg>/var/log/secure</arg>\n"
                               "    <arg>-type</arg>\n"
                               "    <arg>f</arg>\n"
                               "    <arg>-xdev</arg>\n"
                               "    <arg>-prune</arg>\n"
                               "    <arg>-name</arg>\n"
                               "    <arg>secure_data_file.txt</arg>\n"
                               "    <arg>-mtime</arg>\n"
                               "    <arg>+3</arg>\n"
                               "    <arg>-exec</arg>\n"
                               "    <arg>rm</arg>\n"
                               "    <arg>-f</arg>\n"
                               "    <arg>{}</arg>\n"
                               "    <arg>;</arg>\n"
                               "  </exec_args>\n"
                               "  <path>/lib/ld.so.1</path>\n"
                               "  <attribute mode=\"100755\" uid=\"0\" gid=\"2\" fsid=\"256\" nodeid=\"449952\" device=\"18446744073709551615\"/>\n"
                               "  <subject audit-uid=\"99999\" uid=\"0\" gid=\"0\" ruid=\"0\" rgid=\"0\" pid=\"2871\" sid=\"1898719819\" tid=\"9307 196630 192.0.2.10\"/>\n"
                               "  <return errval=\"0\" retval=\"0\"/>\n"
                               "  <sequence seq-num=\"6849431\"/>\n"
                               "</record>"
              },
              "principal": {
                "hostname": "sanitized-host-01",
                "user": {
                  "userid": "99999"
                },
                "asset": {
                  "hostname": "sanitized-host-01",
                  "ip": "192.0.2.1"
                },
                "ip": "192.0.2.1",
                "platform": "LINUX"
              },
              "target": {
                "process": {
                  "parent_process": {
                    "pid": "2853"
                  },
                  "command_line": "find /var/log/secure -type f -xdev -prune -name secure_data_file.txt -mtime +3 -exec rm -f {} ;"
                }
              },
              "intermediary": {
                "hostname": "internal-proxy.local"
              },
              "security_result": {
                "detection_fields": [
                  { "key": "event", "value": "event: 23" },
                  { "key": "uid", "value": "uid: 0" },
                  { "key": "gid", "value": "gid: 0" },
                  { "key": "ruid", "value": "ruid: 0" },
                  { "key": "rgid", "value": "rgid: 0" },
                  { "key": "pid", "value": "pid: 2871" },
                  { "key": "sid", "value": "sid: 1898719819" },
                  { "key": "tid", "value": "tid: 9307 196630 192.0.2.10" },
                  { "key": "seq_num", "value": "seq_num: 6849431" },
                  { "key": "errval", "value": "errval: 0" },
                  { "key": "retval", "value": "retval: 0" },
                  { "key": "path", "value": "path: /usr/bin/find" },
                  { "key": "device", "value": "device: 18446744073709551615" },
                  { "key": "mode", "value": "mode: 100555" },
                  { "key": "fsid", "value": "fsid: 256" },
                  { "key": "nodeid", "value": "nodeid: 722" }
                ]
              }
            }
          }
        }
      }
    }
    

UDM mapping table

Log field UDM mapping Remark
acct target.user.user_display_name The value of acct from the raw log is mapped to the target.user.user_display_name field in the UDM. This represents the account associated with the event.
addr principal.ip The value of addr from the raw log is mapped to the principal.ip field in the UDM. This represents the IP address of the principal involved in the event.
additional.fields additional.fields Additional fields from parsed key-value pairs or labels are added to the additional.fields array in the UDM.
agent.googleapis.com/log_file_path (Not Mapped) This label is present in some raw logs but is not mapped to the IDM object in the UDM.
algo (Not used in this example) Although present in the parser and some raw logs, this field isn't used in the provided example and doesn't appear in the final UDM.
application principal.application Derived from the terminal field in the raw log or other fields like exe depending on the log type. Represents the application involved.
arch security_result.about.platform_version The architecture from the raw log's arch field is mapped to security_result.about.platform_version.
auid about.user.userid, security_result.detection_fields.auid The audit user ID (auid) is mapped to about.user.userid and added as a detection field in security_result.
cmd target.process.command_line The command from the raw log's cmd field is mapped to target.process.command_line.
collection_time (Not Mapped) This field is the log collection time and is not mapped to the IDM object in the UDM.
comm principal.application The command name (comm) is mapped to principal.application.
COMMAND target.process.command_line
compute.googleapis.com/resource_name principal.hostname The resource name from this label is mapped to principal.hostname.
create_time (Not Mapped) This field is not mapped to the IDM object in the UDM.
cwd security_result.detection_fields.cwd The current working directory (cwd) is added as a detection field in security_result.
data (Processed) The data field contains the main log message and is processed by the parser to extract various fields. It is not directly mapped to a single UDM field.
exe target.process.file.full_path The executable path (exe) is mapped to target.process.file.full_path.
extensions.auth.type extensions.auth.type The authentication type is set by the parser logic based on the event type. Often set to MACHINE or AUTHTYPE_UNSPECIFIED.
fp network.tls.client.certificate.sha256 The fingerprint (fp) is parsed to extract the SHA256 hash and mapped to network.tls.client.certificate.sha256.
_Item_Id metadata.product_log_id
insertId (Not Mapped) This field is not mapped to the IDM object in the UDM.
jsonPayload.message (Processed) This field contains the main log message in JSON format and is processed by the parser.
key security_result.about.registry.registry_key The key field is mapped to security_result.about.registry.registry_key.
labels (Processed) Labels from the raw log are processed and mapped to various UDM fields or added to additional.fields.
logName (Not Mapped) This field is not mapped to the IDM object in the UDM.
metadata.product_event_type SECCOMP The key exchange curve is extracted from the raw log and mapped to this field.
msg security_result.summary The message (msg) is often used to populate the security_result.summary field.
network.application_protocol network.application_protocol Set by the parser logic based on the event type (e.g., SSH, HTTP).
network.direction network.direction Set by the parser logic based on the event type (e.g., INBOUND, OUTBOUND).
network.ip_protocol network.ip_protocol Set by the parser logic, usually to TCP for SSH events.
network.session_id network.session_id Mapped from the ses field or derived from other fields.
network.tls.cipher network.tls.cipher The cipher information is extracted from the raw log and mapped to this field.
network.tls.curve network.tls.curve The key exchange curve is extracted from the raw log and mapped to this field.
pid principal.process.pid, target.process.pid The process ID (pid) is mapped to either principal.process.pid or target.process.pid depending on the context.
ppid principal.process.parent_process.pid, target.process.parent_process.pid The parent process ID (ppid) is mapped to either principal.process.parent_process.pid or target.process.parent_process.pid depending on the context.
principal.asset.hostname principal.asset.hostname Copied from principal.hostname.
principal.asset.ip principal.asset.ip Copied from principal.ip.
principal.platform principal.platform Set by the parser logic based on the operating system (e.g., LINUX).
principal.port principal.port The port number associated with the principal.
principal.user.group_identifiers principal.user.group_identifiers Group IDs associated with the principal user.
process.name target.process.file.full_path
receiveTimestamp (Not Mapped) This field is the log receive timestamp and is not mapped to the IDM object in the UDM.
res security_result.action_details The result (res) is mapped to security_result.action_details.
_Resource_Id target.resource.product_object_id
resource.labels (Not Mapped) These labels are present in some raw logs but are not mapped to the IDM object in the UDM.
resource.type (Not Mapped) This field is present in some raw logs but is not mapped to the IDM object in the UDM.
security_result.action security_result.action Set by the parser logic based on the res field (e.g., ALLOW, BLOCK).
security_result.detection_fields security_result.detection_fields Various fields from the raw log are added as key-value pairs to this array for context.
security_result.rule_id security_result.rule_id Set by the parser logic, often to the type_name for syscall events.
security_result.severity security_result.severity Set by the parser logic based on the severity level in the raw log.
security_result.summary security_result.summary A summary of the event, often derived from the msg field or other relevant fields.
ses network.session_id The session ID (ses) is mapped to network.session_id.
source (Not Mapped) This field contains metadata about the log source and is not mapped to the IDM object in the UDM.
subj (Processed) The subject field (subj) is processed to extract user and security context information.
syscall security_result.about.labels.Syscall The syscall number is added as a label within security_result.about.
target.administrative_domain target.administrative_domain The domain of the target user.
target.group.group_display_name target.group.group_display_name The name of the target group.
target.ip target.ip The IP address of the target.
target.port target.port The port number associated with the target.
target.process.command_line target.process.command_line The command line of the target process.
target.resource.type target.resource.type The type of the target resource, set by the parser logic (e.g., CREDENTIAL, SETTING).
target.user.attribute.permissions target.user.attribute.permissions Permissions related to the target user.
target.user.group_identifiers target.user.group_identifiers Group IDs associated with the target user.
target.user.userid target.user.userid The user ID of the target.
TenantId metadata.product_deployment_id
textPayload (Processed) The text payload of the log, processed by the parser to extract various fields.
timestamp metadata.event_timestamp The timestamp of the event.
tty security_result.about.labels.tty The tty is added as a label within security_result.about.
type metadata.product_event_type The event type (type) is mapped to metadata.product_event_type.
uid target.user.userid The user ID (uid) is mapped to target.user.userid.

UDM mapping delta reference

On September 23, 2025, Google SecOps released a new version of the Okta parser, which includes significant changes to the mapping of Okta log fields to UDM fields and changes to the mapping of event types.

Log-field mapping delta

The following table lists the mapping delta for Okta log-to-UDM fields exposed prior to September 23, 2025 and subsequently (listed in the Old mapping and Current mapping columns, respectively).

Log field Old mapping Current mapping Reference log sample
1.1.1.1 (ip address) src.ip principal.ip "<163>Apr 10 09:00:05 hostname.com sshd[3318513]: Accepted password for abc from 1.1.1.1 port 33988 ssh2"
1.1.1.1 (ip address) principal.ip target.ip "<29>Oct 5 08:37:16 abc ProxySG: E0000 Access Log HTTP (main): Connecting to server 1.1.1.1 on port 4433.(0) NORMAL_EVENT alog_stream_http.cpp 261"
abc (user) principal.user.userid target.user.userid "<85>Feb 27 08:26:55 offozcav login: FAILED LOGIN 1 FROM ::ffff:1.1.1.1 FOR abc, Authentication failure\r\n\r\n"
abc.abc (user) principal.user.userid target.user.userid "<86>Feb 27 08:29:19 offozcav login: LOGIN ON pts/43 BY abc.abc FROM\r\n\r\n::ffff:1.1.1.1"
COMMAND principal.process.command_line target.process.command_line "<85>Sep 24 14:33:59 abc sudo: abc : \r\nTTY=unknown ; PWD=/abc ; USER=abc ; COMMAND=/sbin/iptables -t nat -nL \r\n--line-number"
exe target.process.file.full_path principal.process.file.full_path
_ItemId additional.fields metadata.product_log_id
metadata.product_event_type PATH SECCOMP
process.name principal.process.file.full_path target.process.file.full_path
_ResourceId additional.fields target.resource.product_object_id
TenantId additional.fields metadata.product_deployment_id
uid principal.user.userid target.user.userid
USER principal.user.user_display_name target.user.userid "<85>Sep 24 14:33:59 abc sudo: abc : \r\nTTY=unknown ; PWD=/abc ; USER=abc ; COMMAND=/sbin/iptables -t nat -nL \r\n--line-number"
user principal.user.userid target.user.userid "29>Jan 16 11:28:00 san-auth-1-irl2 tac_plus[17329]: login failure: user 1.1.1.1 (1.1.1.1) vty0"
user principal.user.userid target.user.userid "<87>Jul 15 10:27:01 xpgjrconfdb01 crond[1045]: pam_unix(crond:account): expired password for user root (password aged)"

Event-type mapping delta

Multiple events that were classified before as generic event are now properly classified with meaningful event types.

The following table lists the delta for the handling of Okta event types prior to September 23, 2025 and subsequently (listed in the Old event_type and Current event-type columns respectively).

eventType from log Old event_type Current event_type
aix_event_type=CRON_Start USER_LOGIN PROCESS_LAUNCH
CRYPTO_KEY_USER NETWORK_CONNECTION USER_LOGIN
FILE_Mknod USER_LOGIN FILE_CREATION
FILE_Rename USER_LOGIN FILE_MODIFICATION
FILE_Stat USER_LOGIN FILE_OPEN
FILE_Unlink USER_LOGIN FILE_DELETION
FS_Chabc USER_LOGIN PROCESS_UNCATEGORIZED
FS_Mkdir USER_LOGIN FILE_CREATION
FS_Rmdir USER_LOGIN FILE_DELETION
PROC_Execute USER_LOGIN PROCESS_LAUNCH
type=ANOM_ABEND STATUS_UPDATE PROCESS_TERMINATION
type=ANOM_PROMISCUOUS SETTING_MODIFICATION
type=CRED_REFR USER_LOGIN USER_CHANGE_PERMISSIONS
type=PROCTILE PROCESS_UNCATEGORIZED PROCESS_LAUNCH
type=SERVICE_START USER_RESOURCE_ACCESS SERVICE_START
type=SERVICE_STOP USER_RESOURCE_ACCESS SERVICE_STOP
type=USER_ACCT USER_LOGIN/SETTING_MODIFICTION USER_LOGIN
type=USER_MGMT SETTING_MODIFICATION/GROUP_MODIFICATION GROUP_MODIFICATION
USER_ERR USER_LOGOUT USER_LOGIN

Need more help? Get answers from Community members and Google SecOps professionals.