Collect Windows Event logs (XML format)

Supported in:

This document explains how to ingest Windows Event logs in XML format to Google Security Operations using the Bindplane agent.

Windows Event Log (XML format) contains security, system, and application events generated by the Windows operating system. The Bindplane agent collects exported Windows Event log files directly from the local file system.

Before you begin

Make sure you have the following prerequisites:

  • A Google SecOps instance
  • Windows Server 2016 or later with observiq-otel-collector service support
  • If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
  • Administrator access to the Windows hosts generating event logs

Get 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. Save the file securely on the system where Bindplane will be installed.

Get 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

Install the Bindplane agent on your Windows operating system according to the following instructions.

Windows installation

  1. Open Command Prompt or PowerShell as an administrator.
  2. Run the following command:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. Wait for the installation to complete.

  4. Verify the installation by running:

    sc query observiq-otel-collector
    

    The service should show as RUNNING.

Additional installation resources

For additional installation options and troubleshooting, see Bindplane agent installation guide.

Configure Bindplane agent to ingest logs and send to Google SecOps

Locate the configuration file

  • Windows:

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

Edit the configuration file

  • Replace the entire contents of config.yaml with the following configuration:

    receivers:
        filelog:
            include:
                - C:\Logs\winevtlog\*.evtx
            start_at: beginning
    
    exporters:
        chronicle/winevtlog_xml:
            compression: gzip
            creds_file_path: 'C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: WINEVTLOG_XML
            raw_log_field: body
            ingestion_labels:
                env: production
    
    service:
        pipelines:
            logs/winevtlog_xml_to_chronicle:
                receivers:
                    - filelog
                exporters:
                    - chronicle/winevtlog_xml
    

Configuration parameters

Replace the following placeholders:

  • Receiver configuration:

    • filelog: The receiver type for collecting log files from disk
    • include: List of file paths to monitor. Set this to the location where you export Windows Event logs (for example, C:\Logs\winevtlog\*.evtx)
    • start_at: Set to beginning to read existing logs or end to only read new entries
  • Exporter configuration:

    • winevtlog_xml: Descriptive name for the exporter
    • creds_file_path: Full path to ingestion authentication file:
      • Windows: C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • <customer_id>: Customer ID from the previous step
    • endpoint: Regional endpoint URL:
      • US: malachiteingestion-pa.googleapis.com
      • Europe: europe-malachiteingestion-pa.googleapis.com
      • Asia: asia-southeast1-malachiteingestion-pa.googleapis.com
      • See Regional Endpoints for complete list
    • WINEVTLOG_XML: Log type exactly as it appears in Chronicle
    • ingestion_labels: Optional labels in YAML format (for example, env: production)
  • Pipeline configuration:

    • winevtlog_xml_to_chronicle: Descriptive name for the pipeline

Save the configuration file

  • After editing, save the file:

    Windows: Click File > Save

Restart the Bindplane agent to apply the changes

  • To restart the Bindplane agent in Windows, choose one of the following options:

    • Command Prompt or PowerShell as administrator:

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • Services console

      1. Press Win+R, type services.msc, and press Enter.
      2. Locate observIQ OpenTelemetry Collector.
      3. Right-click and select Restart.
      4. Verify the service is running:

        sc query observiq-otel-collector
        
      5. Check logs for errors:

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

Configure Windows Event log export

Windows Event logs are stored in channels such as Security, System, and Application. You need to export these logs to files on disk so the Bindplane agent can collect them.

  1. Create a directory to store the exported log files:

    mkdir C:\Logs\winevtlog
    
  2. Export Windows Event logs using wevtutil. You can export any combination of event log channels:

    wevtutil epl "Security" C:\Logs\winevtlog\security.evtx
    
    wevtutil epl "System" C:\Logs\winevtlog\system.evtx
    
    wevtutil epl "Application" C:\Logs\winevtlog\application.evtx
    
  3. (Optional) Schedule regular exports using Windows Task Scheduler:

    $action = New-ScheduledTaskAction -Execute "wevtutil" -Argument 'epl "Security" C:\Logs\winevtlog\security.evtx /ow:true'
    $trigger = New-ScheduledTaskTrigger -RepetitionInterval (New-TimeSpan -Hours 1) -Once -At (Get-Date)
    Register-ScheduledTask -Action $action -Trigger $trigger -TaskName "ExportWinEvtLogs" -Description "Export Windows Event logs for Bindplane agent"
    
  4. Verify that the exported log files are being created at `C:\Logs\winevtlog`.

  5. Ensure the Bindplane agent include path in config.yaml matches the export directory.

UDM mapping table

Log Field UDM Mapping Logic
EventID metadata.product_event_type Value copied directly
RecordNumber metadata.product_log_id Value copied directly
Message, Description, msg metadata.description Value copied directly
metadata.event_type Set dynamically based on event content (for example, NETWORK_CONNECTION, STATUS_UPDATE, NETWORK_DNS, GENERIC_EVENT)
metadata.product_name Set to "Windows"
metadata.vendor_name Set to "Microsoft"
ModuleVersion, ProductVersion metadata.product_version Value copied directly
ProviderGuid metadata.product_deployment_id Value copied directly
Computer, Host, Workstation, WorkstationName principal.asset.hostname Value copied directly
IpAddress, SourceAddress, client_ip principal.asset.ip Value copied directly
Computer, Host, Workstation, WorkstationName principal.hostname Value copied directly
IpAddress, SourceAddress, client_ip principal.ip Value copied directly
SourcePort, LocalPort, Client_port principal.port Value copied directly, converted to integer
SubjectUserName, AccountName principal.user.userid Value copied directly
SubjectUserSid principal.user.windows_sid Value copied directly
AccountDomain, SubjectDomainName, Domain principal.administrative_domain Value copied directly
Source, SourceName, EventSourceName principal.application Value copied directly
ProviderGuid principal.asset_id Prefixed with "Provider_GUID:"
SubjectLogonId principal.labels Added as label with key "SubjectLogonId"
TargetUserName target.user.userid Value copied directly
TargetUserSid target.user.windows_sid Value copied directly
TargetDomainName target.hostname Value copied directly
DestAddress, Destination target.ip Value copied directly
NewProcessName, ProcessName, ObjectName target.process.file.full_path Value copied directly
NewProcessId, ProcessId, TargetProcessId target.process.pid Value copied directly
HostApplication, ServiceName target.process.command_line Value copied directly
MD5 target.process.file.md5 Value copied directly
SHA1 target.process.file.sha1 Value copied directly
SHA256 target.process.file.sha256 Value copied directly
ObjectName, TargetObject target.registry.registry_value_name Value copied directly (for registry events)
Details target.registry.registry_value_data Value copied directly (for registry events)
ObjectType, Task target.resource.type Value copied directly
ObjectName, RuleName target.resource.name Value copied directly
TargetSid, ObjectGUID target.resource.id Value copied directly
ObjectClass target.resource.resource_subtype Value copied directly
LogonType extensions.auth.auth_details Prefixed with "Logon Type:"
extensions.auth.type Set based on logon type (MACHINE, SSO, AUTHTYPE_UNSPECIFIED)
HTTPMethod network.http.method Value copied directly
StatusCode network.http.response_code Value copied directly, converted to integer
UserAgent network.http.user_agent Value copied directly
network.application_protocol Set to "DNS" for DNS events
network.direction Set to INBOUND or OUTBOUND based on event context
network.ip_protocol Set based on protocol (TCP, UDP, ICMP)
Channel additional.fields Added as label with key "Channel"
ActivityID additional.fields Added as label with key "ActivityID"
LogonType additional.fields Added as label with key "LogonType"
Level additional.fields Added as label with key "level"
SourceModuleType observer.application Value copied directly
AuthenticationPackageName event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
Status event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
agent_eventid event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
column4 event.idm.read_only_udm.metadata.product_log_id Mapped from changelog
Logon Account event.idm.read_only_udm.target.user.userid Mapped from changelog
prod_event_type event.idm.read_only_udm.additional.fields Mapped from changelog
EventSourceName event.idm.read_only_udm.additional.fields Mapped from changelog
EventIDQualifiers event.idm.read_only_udm.additional.fields Mapped from changelog
ipv6_zone_index event.idm.read_only_udm.additional.fields Mapped from changelog
FQDN event.idm.read_only_udm.target.hostname Mapped from changelog
FQDN event.idm.read_only_udm.target.asset.hostname Mapped from changelog
ServiceSid event.idm.read_only_udm.extensions.auth.auth_details Mapped from changelog
details.Object.Handle ID event.idm.read_only_udm.target.resource.id Mapped from changelog
details.New Logon.Logon ID event.idm.read_only_udm.target.resource.product_object_id Mapped from changelog
details.Account Information.Account Domain event.idm.read_only_udm.target.administrative_domain Mapped from changelog
details.Operation.Accesses event.idm.read_only_udm.security_result.description Mapped from changelog
ElevatedToken event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
elevated_token event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
ReadOperation event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details_Subject_Read_Operation event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
TargetName event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
AccessList event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
ClientProcessStartKey event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
RpcCallClientLocality event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
ServiceName event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
CountOfCredentialsReturned event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
PrivilegeList event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
TargetLinkedLogonId event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
TaskName event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
TaskContentNew event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Logon_Process_Name event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Object_Object_Type event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Object_Object_Server event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Access_Mask event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Object_Object_Name event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
details_Service_Information_Available_Keys event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
ProcessCreationTime event.idm.read_only_udm.additional.fields Mapped from changelog
AdditionalInfo2 event.idm.read_only_udm.additional.fields Mapped from changelog
ObjectName event.idm.read_only_udm.additional.fields Mapped from changelog
details_Additional_Information_Parameter_2 event.idm.read_only_udm.additional.fields Mapped from changelog
VirtualAccount event.idm.read_only_udm.additional.fields Mapped from changelog
Type event.idm.read_only_udm.additional.fields Mapped from changelog
ReturnCode event.idm.read_only_udm.additional.fields Mapped from changelog
ImpersonationLevel event.idm.read_only_udm.additional.fields Mapped from changelog
TargetLogonId event.idm.read_only_udm.additional.fields Mapped from changelog
TicketOptions event.idm.read_only_udm.additional.fields Mapped from changelog
TicketEncryptionType event.idm.read_only_udm.additional.fields Mapped from changelog
SessionKeyEncryptionType event.idm.read_only_udm.additional.fields Mapped from changelog
Status event.idm.read_only_udm.additional.fields Mapped from changelog
RequestTicketHash event.idm.read_only_udm.additional.fields Mapped from changelog
ResponseTicketHash event.idm.read_only_udm.additional.fields Mapped from changelog
ServiceSupportedEncryptionTypes event.idm.read_only_udm.additional.fields Mapped from changelog
ServiceAvailableKeys event.idm.read_only_udm.additional.fields Mapped from changelog
DCSupportedEncryptionTypes event.idm.read_only_udm.additional.fields Mapped from changelog
DCAvailableKeys event.idm.read_only_udm.additional.fields Mapped from changelog
ClientAdvertizedEncryptionTypes event.idm.read_only_udm.additional.fields Mapped from changelog
details.Privileges event.idm.read_only_udm.additional.fields Mapped from changelog
details_New_Logon_Security_ID event.idm.read_only_udm.additional.fields Mapped from changelog
details_Additional_Information_Parameter_1 event.idm.read_only_udm.additional.fields Mapped from changelog
details_New_Logon_Account_Name event.idm.read_only_udm.additional.fields Mapped from changelog
details_New_Logon_Linked_Logon_ID event.idm.read_only_udm.additional.fields Mapped from changelog
impersonation_level event.idm.read_only_udm.additional.fields Mapped from changelog
correlation_activity_id event.idm.read_only_udm.additional.fields Mapped from changelog
details_Account_Information_Account_Name event.idm.read_only_udm.additional.fields Mapped from changelog
details_Account_Information_Logon_GUID event.idm.read_only_udm.additional.fields Mapped from changelog
details_Operation_Operation_Type event.idm.read_only_udm.additional.fields Mapped from changelog
details_additional_information_failure_code event.idm.read_only_udm.additional.fields Mapped from changelog
details_Additional_Information_Ticket_Options event.idm.read_only_udm.additional.fields Mapped from changelog
details_Additional_Information_Ticket_Encryption_Type event.idm.read_only_udm.additional.fields Mapped from changelog
details_Additional_Information_Session_Encryption_Type event.idm.read_only_udm.additional.fields Mapped from changelog
details_Domain_Controller_Information_Available_Keys event.idm.read_only_udm.additional.fields Mapped from changelog
details_Domain_Controller_Information_MSDS_SupportedEncryptionTypes event.idm.read_only_udm.additional.fields Mapped from changelog
details_Service_Information_Service_ID event.idm.read_only_udm.additional.fields Mapped from changelog
network_information_client_port event.idm.read_only_udm.additional.fields Mapped from changelog
details.Network_Information.Advertized_Etypes event.idm.read_only_udm.additional.fields Mapped from changelog
response_ticket_hash event.idm.read_only_udm.additional.fields Mapped from changelog
request_ticket_hash event.idm.read_only_udm.additional.fields Mapped from changelog
details_Subject_Logon_ID event.idm.read_only_udm.additional.fields Mapped from changelog
network_information_client_address event.idm.read_only_udm.principal.ip Mapped from changelog
network_information_client_address event.idm.read_only_udm.principal.asset.ip Mapped from changelog
ClientProcessId event.idm.read_only_udm.target.process.pid Mapped from changelog
ParentProcessId event.idm.read_only_udm.principal.process.pid Mapped from changelog
details_Service_Information_Service_Name event.idm.read_only_udm.target.application Mapped from changelog
SourceName event.idm.read_only_udm.metadata.product_name Mapped from changelog
Source event.idm.read_only_udm.metadata.product_name Mapped from changelog
provider.name event.idm.read_only_udm.metadata.product_name Mapped from changelog
prod_name event.idm.read_only_udm.metadata.product_name Mapped from changelog
EventSourceName event.idm.read_only_udm.metadata.product_name Mapped from changelog
NewProcessId event.idm.read_only_udm.target.process.pid Mapped from changelog
details.Network Information.Source Network Address event.idm.read_only_udm.principal.ip Mapped from changelog
details.Network Information.Source Network Address event.idm.read_only_udm.principal.asset.ip Mapped from changelog
details.Account For Which Logon Failed.Security ID event.idm.read_only_udm.target.user.product_object_id Mapped from changelog
details.Detailed Authentication Information.Logon Process event.idm.read_only_udm.principal.process.file.full_path Mapped from changelog
details.Failure Information.Failure Reason event.idm.read_only_udm.security_result.description Mapped from changelog
event_id.qualifiers event.idm.read_only_udm.additional.fields Mapped from changelog
TargetUserSid event.idm.read_only_udm.additional.fields Mapped from changelog
WorkstationName event.idm.read_only_udm.additional.fields Mapped from changelog
LogonType event.idm.read_only_udm.additional.fields Mapped from changelog
AuthenticationPackageName event.idm.read_only_udm.additional.fields Mapped from changelog
KeyLength event.idm.read_only_udm.additional.fields Mapped from changelog
LogonProcessName event.idm.read_only_udm.additional.fields Mapped from changelog
details.Network Information.Source Port event.idm.read_only_udm.additional.fields Mapped from changelog
details.Account For Which Logon Failed.Account Name event.idm.read_only_udm.additional.fields Mapped from changelog
Msg_1 event.idm.read_only_udm.additional.fields Mapped from changelog
details.Account For Which Logon Failed.Account Domain event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
version event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Detailed Authentication Information.Key Length event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
keywords event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Detailed Authentication Information.Authentication Package event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Failure Information.Status event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Failure Information.Sub Status event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Process Information.Caller Process ID event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Subject.Security ID event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
details.Network Information.Workstation Name event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
SamAccountName event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
UserPrincipalName event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
HomeDirectory event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
HomePath event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
ScriptPath event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
ProfilePath event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
UserWorkstations event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
PasswordLastSet event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
AccountExpires event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
PrimaryGroupId event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
AllowedToDelegateTo event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
OldUacValue event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
NewUacValue event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
UserAccountControl event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
UserParameters event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
LogonHours event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
ServicePrincipalNames event.idm.read_only_udm.target.user.attribute.labels Mapped from changelog
DisplayName event.idm.read_only_udm.target.user.user_display_name Mapped from changelog
UserPrincipalName event.idm.read_only_udm.target.user.email_addresses Mapped from changelog
DnsHostName event.idm.read_only_udm.target.hostname Mapped from changelog
DnsHostName event.idm.read_only_udm.target.asset.hostname Mapped from changelog
EventReceivedTime event.idm.read_only_udm.metadata.collected_timestamp Mapped from changelog
SourceModuleName event.idm.read_only_udm.principal.resource.name Mapped from changelog
Opcode event.idm.read_only_udm.principal.resource.attribute.labels Mapped from changelog
ComputerAccountChange event.idm.read_only_udm.principal.resource.attribute.labels Mapped from changelog
ProcessID event.idm.read_only_udm.principal.process.pid Mapped from changelog
ThreadID event.idm.read_only_udm.additional.fields Mapped from changelog
SeverityValue event.idm.read_only_udm.additional.fields Mapped from changelog
Category event.idm.read_only_udm.additional.fields Mapped from changelog
PrivilegeList event.idm.read_only_udm.principal.user.attribute.labels Mapped from changelog
SourceName event.idm.read_only_udm.principal.application Mapped from changelog
EventIdx event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
EventCountTotal event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
record.owner event.idm.read_only_udm.principal.user.userid Mapped from changelog
record.logGroup event.idm.read_only_udm.security_result.about.resource.name Mapped from changelog
record.logStream event.idm.read_only_udm.security_result.about.resource.attribute.labels Mapped from changelog
Provider event.idm.read_only_udm.security_result.about.resource.attribute.labels Mapped from changelog
record.messageType event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
OldSd event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
NewSd event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
logEvent.id event.idm.read_only_udm.metadata.product_log_id Mapped from changelog
Address event.idm.read_only_udm.additional.fields Mapped from changelog
AddressLength event.idm.read_only_udm.additional.fields Mapped from changelog
Keyword event.idm.read_only_udm.additional.fields Mapped from changelog
BinaryId event.idm.read_only_udm.additional.fields Mapped from changelog
Opcode event.idm.read_only_udm.additional.fields Mapped from changelog
param1 event.idm.read_only_udm.additional.fields Mapped from changelog
param2 event.idm.read_only_udm.additional.fields Mapped from changelog
PrivilegeList event.idm.read_only_udm.target.resource.resource_subtype Mapped from changelog
Version event.idm.read_only_udm.metadata.product_version Mapped from changelog
Channel_type event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
TimeGenerated event.idm.read_only_udm.metadata.event_timestamp Mapped from changelog
SystemProcessId event.idm.read_only_udm.principal.process.pid Mapped from changelog
EventRecordId event.idm.read_only_udm.metadata.product_log_id Mapped from changelog
SourceComputerId event.idm.read_only_udm.principal.asset.asset_id Mapped from changelog
ManagementGroupName event.idm.read_only_udm.principal.group.group_display_name Mapped from changelog
SystemThreadId event.idm.read_only_udm.principal.resource.attribute.labels Mapped from changelog
EventLevelName event.idm.read_only_udm.additional.fields Mapped from changelog
TenantId event.idm.read_only_udm.additional.fields Mapped from changelog
LogonTypeName event.idm.read_only_udm.additional.fields Mapped from changelog
Activity event.idm.read_only_udm.additional.fields Mapped from changelog
MG event.idm.read_only_udm.additional.fields Mapped from changelog
_SubscriptionId event.idm.read_only_udm.additional.fields Mapped from changelog
_ItemId event.idm.read_only_udm.additional.fields Mapped from changelog
_IsBillable event.idm.read_only_udm.additional.fields Mapped from changelog
_BilledSize event.idm.read_only_udm.additional.fields Mapped from changelog
_Internal_WorkspaceResourceId event.idm.read_only_udm.additional.fields Mapped from changelog
TimeCollected event.idm.read_only_udm.metadata.collected_timestamp Mapped from changelog
SystemUserId event.idm.read_only_udm.principal.user.userid Mapped from changelog
_ResourceId event.idm.read_only_udm.principal.resource.product_object_id Mapped from changelog
EventSourceName event.idm.read_only_udm.target.application Mapped from changelog
EventOriginId event.idm.read_only_udm.target.process.product_specific_process_id Mapped from changelog
SourceSystem event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
OldTargetUserName event.idm.read_only_udm.additional.fields Mapped from changelog
NewTargetUserName event.idm.read_only_udm.additional.fields Mapped from changelog
NewTargetUserName event.idm.read_only_udm.target.user.userid Mapped from changelog
SAM Account Name event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
Display Name event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
User Workstations event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
Account Expires event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
Primary Group ID event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
DNS Host Name event.idm.read_only_udm.target.resource.attribute.labels Mapped from changelog
User Principal Name event.idm.read_only_udm.principal.resource.attribute.labels Mapped from changelog
Service Principal Names event.idm.read_only_udm.principal.resource.attribute.labels Mapped from changelog
Home Directory event.idm.read_only_udm.additional.fields Mapped from changelog
Home Drive event.idm.read_only_udm.additional.fields Mapped from changelog
Script Path event.idm.read_only_udm.additional.fields Mapped from changelog
Profile Path event.idm.read_only_udm.additional.fields Mapped from changelog
AllowedToDelegateTo event.idm.read_only_udm.additional.fields Mapped from changelog
Old UAC Value event.idm.read_only_udm.additional.fields Mapped from changelog
New UAC Value event.idm.read_only_udm.additional.fields Mapped from changelog
User Account Control event.idm.read_only_udm.additional.fields Mapped from changelog
User Parameters event.idm.read_only_udm.additional.fields Mapped from changelog
SID History event.idm.read_only_udm.additional.fields Mapped from changelog
Logon Hours event.idm.read_only_udm.additional.fields Mapped from changelog
additional_information event.idm.read_only_udm.additional.fields Mapped from changelog
Description_data event.idm.read_only_udm.additional.fields Mapped from changelog
Version event1.idm.read_only_udm.metadata.product_version Mapped from changelog
UserName event.idm.read_only_udm.principal.user.userid Mapped from changelog
param1 event.idm.read_only_udm.target.application Mapped from changelog
param3 event.idm.read_only_udm.additional.fields Mapped from changelog
param4 event.idm.read_only_udm.additional.fields Mapped from changelog
sourceHealthServiceId event.idm.read_only_udm.additional.fields Mapped from changelog
/Event[%{index}]/TaskName event.idm.read_only_udm.target.resource.name Mapped from changelog
computer event.idm.read_only_udm.principal.hostname Mapped from changelog
computer event.idm.read_only_udm.principal.asset.hostname Mapped from changelog
SubjectUserSid event.idm.read_only_udm.principal.user.windows_sid Mapped from changelog
IpAddress event.idm.read_only_udm.principal.ip Mapped from changelog
IpAddress event.idm.read_only_udm.principal.asset.ip Mapped from changelog
IpPort event.idm.read_only_udm.principal.port Mapped from changelog
LogonGuid event.idm.read_only_udm.principal.resource.product_object_id Mapped from changelog
ProcessId event.idm.read_only_udm.target.process.pid Mapped from changelog
ProcessName event.idm.read_only_udm.target.process.file.full_path Mapped from changelog
SubjectDomainName event.idm.read_only_udm.principal.administrative_domain Mapped from changelog
SubjectUserName event.idm.read_only_udm.principal.user.userid Mapped from changelog
SubjectLogonId event.idm.read_only_udm.principal.labels Mapped from changelog
TargetDomainName event.idm.read_only_udm.target.administrative_domain Mapped from changelog
TargetUserName event.idm.read_only_udm.target.user.userid Mapped from changelog
TargetServerName event.idm.read_only_udm.target.hostname Mapped from changelog
TargetLogonGuid event.idm.read_only_udm.target.resource.product_object_id Mapped from changelog
TargetInfo event.idm.read_only_udm.target.labels Mapped from changelog
execution.process_id event.idm.read_only_udm.principal.process.pid Mapped from changelog
provider.guid event.idm.read_only_udm.metadata.product_log_id Mapped from changelog
system_time event.idm.read_only_udm.metadata.event_timestamp Mapped from changelog
execution.thread_id event.idm.read_only_udm.additional.fields Mapped from changelog
provider.name event.idm.read_only_udm.additional.fields Mapped from changelog
record_id event.idm.read_only_udm.additional.fields Mapped from changelog
task event.idm.read_only_udm.additional.fields Mapped from changelog
opcode event.idm.read_only_udm.additional.fields Mapped from changelog
ServiceFileName event1.idm.read_only_udm.target.file.full_path Mapped from changelog
Computer event1.idm.read_only_udm.principal.hostname and event1.idm.read_only_udm.principal.asset.hostname Mapped from changelog
OriginatingComputer event1.idm.read_only_udm.principal.ip and event1.idm.read_only_udm.principal.asset.ip Mapped from changelog
AccountName event1.idm.read_only_udm.principal.user.userid Mapped from changelog
ServiceAccount event1.idm.read_only_udm.additional.fields Mapped from changelog
ProviderName event.idm.read_only_udm.additional.fields Mapped from changelog
loggingSourceName event.idm.read_only_udm.additional.fields Mapped from changelog
Pid event.idm.read_only_udm.principal.process.pid Mapped from changelog
Description event.idm.read_only_udm.metadata.description Mapped from changelog
EventTickCount event.idm.read_only_udm.additional.fields Mapped from changelog
ProductVersion event.idm.read_only_udm.metadata.product_version Mapped from changelog
ActivityID event.idm.read_only_udm.additional.fields Mapped from changelog
ModuleVersion event.idm.read_only_udm.metadata.product_version Mapped from changelog
AppPath event.idm.read_only_udm.target.file.full_path Mapped from changelog
QXID event.idm.read_only_udm.additional.fields Mapped from changelog
GUID event.idm.read_only_udm.additional.fields Mapped from changelog
Flags event.idm.read_only_udm.additional.fields Mapped from changelog
CacheScope event.idm.read_only_udm.additional.fields Mapped from changelog
RecursionScope event.idm.read_only_udm.additional.fields Mapped from changelog
RD event.idm.read_only_udm.additional.fields Mapped from changelog
Port event.idm.read_only_udm.additional.fields Mapped from changelog
Source event.idm.read_only_udm.principal.ip Mapped from changelog
Source event.idm.read_only_udm.principal.asset.ip Mapped from changelog
InterfaceIP event.idm.read_only_udm.intermediary.ip Mapped from changelog
cat event1.idm.read_only_udm.additional.fields Mapped from changelog
SecurityId event1.idm.read_only_udm.additional.fields Mapped from changelog
AccountName event1.idm.read_only_udm.additional.fields Mapped from changelog
LogonId event1.idm.read_only_udm.additional.fields Mapped from changelog
HandleId event1.idm.read_only_udm.additional.fields Mapped from changelog
OperationType event1.idm.read_only_udm.additional.fields Mapped from changelog
NewValueType event1.idm.read_only_udm.additional.fields Mapped from changelog
OldValueType event1.idm.read_only_udm.additional.fields Mapped from changelog
OldValue event1.idm.read_only_udm.additional.fields Mapped from changelog
application event1.idm.read_only_udm.principal.application Mapped from changelog
message event1.idm.read_only_udm.metadata.description Mapped from changelog
AccountDomain event1.idm.read_only_udm.principal.administrative_domain Mapped from changelog
ProcessName event1.idm.read_only_udm.principal.process.file.full_path Mapped from changelog
xmlns event1.idm.read_only_udm.principal.url Mapped from changelog
SourceName event1.idm.read_only_udm.principal.application Mapped from changelog
ProviderGuid event1.idm.read_only_udm.principal.asset_id Mapped from changelog
powershell_command event.idm.read_only_udm.security_result.about.process.command_line Mapped from changelog
scriptblock_id event.idm.read_only_udm.security_result.detection_fields Mapped from changelog
Destination event1.idm.read_only_udm.target.ip Mapped from changelog
Destination event1.idm.read_only_udm.target.asset.ip Mapped from changelog
qname event1.idm.read_only_udm.network.dns.questions.name Mapped from changelog
qtype event1.idm.read_only_udm.network.dns.questions.type Mapped from changelog
InterfaceIP event1.idm.read_only_udm.principal.ip Mapped from changelog
InterfaceIP event1.idm.read_only_udm.principal.asset.ip Mapped from changelog
Flags event1.idm.read_only_udm.additional.fields Mapped from changelog
zone event1.idm.read_only_udm.additional.fields Mapped from changelog
xid event1.idm.read_only_udm.additional.fields Mapped from changelog
dnssec event1.idm.read_only_udm.additional.fields Mapped from changelog
PacketData event1.idm.read_only_udm.additional.fields Mapped from changelog
BufferSize event1.idm.read_only_udm.additional.fields Mapped from changelog
rcode event1.idm.read_only_udm.additional.fields Mapped from changelog
AA event1.idm.read_only_udm.additional.fields Mapped from changelog
TCP event1.idm.read_only_udm.additional.fields Mapped from changelog
ElapsedTime event1.idm.read_only_udm.additional.fields Mapped from changelog
AD event1.idm.read_only_udm.additional.fields Mapped from changelog
AdditionalInfo event1.idm.read_only_udm.additional.fields Mapped from changelog
port event1.idm.read_only_udm.target.port Mapped from changelog
rcode event1.idm.read_only_udm.network.dns.response_code Mapped from changelog
SECURITY_ID event.idm.read_only_udm.additional.fields Mapped from changelog
ingestion_source metadata.ingestion_labels Mapped from changelog
details.Creator Subject.Account Domain principal.administrative_domain Mapped from changelog
details.Creator Subject.Logon ID additional.fields Mapped from changelog
details.Creator Subject.Account Name principal.user.userid Mapped from changelog
details.Creator Subject.Security ID principal.user.windows_sid Mapped from changelog
details.Process Information.Creator Process ID principal.process.pid Mapped from changelog
details.Process Information.Creator Process Name principal.process.file.full_path Mapped from changelog
details.Process Information.Mandatory Label target.labels Mapped from changelog
details.Process Information.New Process ID target.process.pid Mapped from changelog
details.Process Information.New Process Name target.process.file.full_path Mapped from changelog
details.Process Information.Process Command Line target.process.command_line Mapped from changelog
details.Process Information.Token Elevation Type security_result.detection_fields Mapped from changelog
details.Target Subject.Account Domain target.administrative_domain Mapped from changelog
details.Target Subject.Account Name target.user.userid Mapped from changelog
details.Target Subject.Logon ID target.user.windows_sid Mapped from changelog
details.Target Subject.Security ID target.user.windows_sid Mapped from changelog
details.Process Information.Process ID principal.process.pid Mapped from changelog
details.Process Information.Process Name principal.process.file.full_path Mapped from changelog
details.Subject.Account Domain principal.administrative_domain Mapped from changelog
details.Subject.Account Name principal.user.userid Mapped from changelog
details.Subject.Logon ID additional.fields Mapped from changelog
details.Subject.Security ID principal.user.windows_sid Mapped from changelog
details.Transaction Information.New State sec_result.detection_fields Mapped from changelog
details.Transaction Information.RM Transaction ID network.session_id Mapped from changelog
details.Transaction Information.Resource Manager target.resource.name Mapped from changelog
details.Additional_Context security_result.detection_fields Mapped from changelog
event_id.id security_result.rule_name Mapped from changelog
computer intermediary.hostname Mapped from changelog
channel security_result.summary Mapped from changelog
Library target.file.full_path Mapped from changelog
ServiceName target.application Mapped from changelog
ServiceFileName target.process.file.full_path Mapped from changelog
ServiceType", "ServiceStartType security_result.detection_fields Mapped from changelog
ServiceAccount target.user.userid Mapped from changelog
IpAddress1 principal.ip Mapped from changelog
hostname_prin principal.hostname Mapped from changelog
Account Name target.yser.userid Mapped from changelog
AttributeSyntaxOID" and "OperationType additional.fields Mapped from changelog
DomainPolicyChanged security_result.detection_fields Mapped from changelog
MemberSid principal.resource.attribute.labels Mapped from changelog
source about.process.command_line Mapped from changelog
task_command principal.process.file.full_path Mapped from changelog
Param1 target.user.userid Mapped from changelog
Param2 principal.administrative_domain Mapped from changelog
Param3 principal.ip Mapped from changelog
SubjectUserName" and "SubjectUserSid additional.fields Mapped from changelog
Hostname additional.fields Mapped from changelog
UserRight", and "AuditSourceName security_result.detection_fields Mapped from changelog
PackageName security_result.detection_fields Mapped from changelog
AgentLogFile additional.fields Mapped from changelog
SubjectAccountName principal.user.userid Mapped from changelog
TargetServerName additional.fields Mapped from changelog
Privileges security_result.detection_fields Mapped from changelog
AccessRight additional.fields Mapped from changelog
ShareName target.file.names Mapped from changelog
LmPackageName target.labels Mapped from changelog
Hostname principal.asset.hostname Mapped from changelog
WorkstationName", "TargetAccountDomain", "SourceAddress", "DSName", "database_name", and "target_hostname target.asset.hostname Mapped from changelog
Properties target.resource.attribute.labels Mapped from changelog
TargetLogonId", "AccessMask", "CertIssuerName", "TicketOptions", "TargetUserName", "AttributeLDAPDisplayName", "AttributeValues", "ObjectDN additional.fields Mapped from changelog
UserID principal.user.userid Mapped from changelog
UserID target.user.userid Mapped from changelog
Event.System.Provider@Name event1.principal.application Mapped from changelog
Event.System.Correlation@ActivityID event1.security_result.detection_fields Mapped from changelog
Event.System.Execution@ProcessID event1.principal.process.pid Mapped from changelog
Event.EventData.Data@SubjectUserName event1.idm.read_only_udm.principal.user.userid Mapped from changelog
Event.EventData.Data@SubjectDomainName event1.idm.read_only_udm.principal.administrative_domain Mapped from changelog
Event.EventData.Data@Workstation event1.idm.read_only_udm.target.hostname Mapped from changelog
Event.EventData.Data@TargetUserName event1.idm.read_only_udm.target.user.userid Mapped from changelog
Event.EventData.Data@TargetDomainName event1.idm.read_only_udm.target.administrative_domain Mapped from changelog
Keywords additional.fields Mapped from changelog
AttributeLDAPDisplayName target.resource.attribute.labels Mapped from changelog
PrincipalDomain principal.administrative_domain Mapped from changelog
PrincipalAccountName principal.user.userid Mapped from changelog
TargetAccountName target.user.userid Mapped from changelog
TargetDomain target.administrative_domain Mapped from changelog
Logon GUID principal.resource.id Mapped from changelog
ProcessID target.process.pid Mapped from changelog
Security_ID", "VirtualAccount", "EventCategory", "ImpersonationLevel", "LinkedLogonID", "NetworkAccountName", "NetworkAccountDomain",and "RestrictedAdminMode security_result.detection_fields Mapped from changelog
LogonID" and "TargetLogonID about.labels Mapped from changelog
AgentDevice additional.fields Mapped from changelog
EventType target.registry.registry_key Mapped from changelog
ProcessId principal.process.pid Mapped from changelog
SourceName target.application Mapped from changelog
ProviderGuid target.resource.product_object_id Mapped from changelog
Account Name principal.user.userid Mapped from changelog
Account Domain principal.administrative_domain Mapped from changelog
Workstation Name principal.hostname Mapped from changelog
Caller Process Id principal.process.pid Mapped from changelog
Source Network Address principal.ip Mapped from changelog
Source Port principal.port Mapped from changelog
Logon Process additional.fields Mapped from changelog
Opcode about.labels Mapped from changelog
ImpersonationLevel about.labels Mapped from changelog
TargetHandleId about.labels Mapped from changelog
RestrictedAdminMode about.labels Mapped from changelog
TargetOutboundDomainName target.user.attribute.labels Mapped from changelog
KeyLength target.labels Mapped from changelog
TargetLogonId target.labels Mapped from changelog
TransmittedServices target.labels Mapped from changelog
TargetLinkedLogonId target.labels Mapped from changelog
VirtualAccount target.labels Mapped from changelog
OldSd target.resource.attribute.labels Mapped from changelog
NewSd target.resource.attribute.labels Mapped from changelog
Channel", "SubjectLogonId", and "ThreadId additional.labels Mapped from changelog
TargetDomainName target.administrative_domain Mapped from changelog
Keywords","Channel","Level","SChannelName","SChannelType","Opcode `` Mapped from changelog
ThreadID target.resource.attribute.labels Mapped from changelog
UserID target.user.windows_sid Mapped from changelog
ProductName" and "ProductVersion metadata.product_version Mapped from changelog

Change Log

View the Change Log for this parser

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