Collect Omnissa Workspace ONE UEM (formerly VMware AirWatch) logs
This document explains how you can ingest Omnissa Workspace ONE UEM (formerly known as VMware AirWatch) logs to Google Security Operations using Bindplane.
Omnissa Workspace ONE UEM is an enterprise mobility management (EMM) platform that provides unified endpoint management across mobile, desktop, rugged, and IoT devices. It enables IT administrators to enroll, configure, secure, and manage corporate and employee-owned devices from a single console.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance
- Windows Server 2016 or later, or Linux host with
systemd - Network connectivity between the Bindplane agent and Omnissa Workspace ONE UEM
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Privileged access to the Omnissa Workspace ONE UEM console with administrator role
Get Google SecOps ingestion authentication file
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Collection Agents.
Download the Ingestion Authentication File. Save the file securely on the system where Bindplane will be installed.
Get Google SecOps customer ID
- Sign in to the Google SecOps console.
- Go to SIEM Settings > Profile.
Copy and save the Customer ID from the Organization Details section.
Install the Bindplane agent
Install the Bindplane agent on your Windows or Linux operating system according to the following instructions.
Windows installation
- Open Command Prompt or PowerShell as an administrator.
Run the following command:
msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quietWait for the installation to complete.
Verify the installation by running:
sc query observiq-otel-collector
The service should show as RUNNING.
Linux installation
- Open a terminal with root or sudo privileges.
Run the following command:
sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.shWait for the installation to complete.
Verify the installation by running:
sudo systemctl status observiq-otel-collector
The service should show as active (running).
Additional installation resources
For additional installation options and troubleshooting, see Bindplane agent installation guide.
Configure the Bindplane agent to ingest syslog and send to Google SecOps
Locate the configuration file
Linux:
sudo nano /status observiq-otel-collector/config.yamlWindows:
notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
Edit the configuration file
Replace the entire contents of
config.yamlwith the following configuration:receivers: tcplog: listen_address: "0.0.0.0:514" exporters: chronicle/airwatch: compression: gzip creds_file_path: '<PLACEHOLDER_CREDS_FILE_PATH>' customer_id: '<PLACEHOLDER_CUSTOMER_ID>' endpoint: malachiteingestion-pa.googleapis.com log_type: AIRWATCH raw_log_field: body ingestion_labels: env: production service: pipelines: logs/airwatch_to_chronicle: receivers: - tcplog exporters: - chronicle/airwatch
Configuration parameters
Replace the following placeholders:
Receiver configuration:
tcplog: TCP syslog receiver for reliable log delivery from Workspace ONE UEM0.0.0.0:514: IP address and port to listen on. Replace the port as required in your infrastructure
Exporter configuration:
<PLACEHOLDER_CREDS_FILE_PATH>: Full path to ingestion authentication file:- Linux:
/etc/bindplane-agent/ingestion-auth.json - Windows:
C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
- Linux:
<PLACEHOLDER_CUSTOMER_ID>: Google SecOps customer IDmalachiteingestion-pa.googleapis.com: Regional endpoint URL. Replace with the appropriate endpoint for your region:- US:
malachiteingestion-pa.googleapis.com - Europe:
europe-malachiteingestion-pa.googleapis.com - Asia:
asia-southeast1-malachiteingestion-pa.googleapis.com - See Regional Endpoints for complete list
- US:
Save the configuration file
- After editing, save the file:
- Linux: Press
Ctrl+O, thenEnter, thenCtrl+X - Windows: Click File > Save
- Linux: Press
Restart the Bindplane agent to apply the changes
To restart the Bindplane agent in Linux:
Run the following command:
sudo systemctl restart observiq-otel-collectorVerify the service is running:
sudo systemctl status observiq-otel-collectorCheck logs for errors:
sudo journalctl -u observiq-otel-collector -f
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:
- Press
Win+R, typeservices.msc, and press Enter. - Locate observIQ OpenTelemetry Collector.
- Right-click and select Restart.
- Press
Verify the service is running:
sc query observiq-otel-collectorCheck logs for errors:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
Configure syslog forwarding in Omnissa Workspace ONE UEM
- Sign in to the Omnissa Workspace ONE UEM console.
- Go to Groups & Settings > All Settings > System > Enterprise Integration > Syslog.
- Select Override for the Current Setting if inheriting from a parent organization group.
- Set Syslog Integration to Enabled.
- Provide the following configuration details:
- Hostname: Enter the IP address or FQDN of the Bindplane agent host.
- Protocol: Select TCP.
- Port: Enter the Bindplane agent port number (for example,
514). - Syslog Facility: Leave as default or select the appropriate facility for your environment.
- Message Tag: Enter
Airwatch. - Message Content: Leave as default.
- Go to the Advanced tab.
- Provide the following configuration details:
- Console Events: Select Enable.
- Select Console Events to Send to Syslog: Click Select All.
- Device Events: Select Enable.
- Select Device Events to Send to Syslog: Click Select All.
- Click Save.
- Click Test Connection to verify that syslog events are being forwarded to the Bindplane agent.
For more information, see Omnissa Workspace ONE UEM Troubleshooting and Logging Guide.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
AdminAccount |
principal.user.userid |
The value is taken from the AdminAccount field in the raw log. |
Application |
target.application |
The value is taken from the Application field in the raw log. |
Event |
metadata.product_event_type |
The value is taken from the Event field in the raw log. |
EventSource |
principal.application |
The value is taken from the EventSource field in the raw log. |
FriendlyName |
principal.asset.hostname |
The value is taken from the FriendlyName field in the raw log. |
GroupName |
target.group.group_display_name |
The value is taken from the GroupName field in the raw log. |
Severity |
security_result.severity |
Mapped based on severity value: Information maps to INFORMATIONAL, Warning maps to MEDIUM, Critical maps to HIGH. |
metadata.product_name |
Set to AIRWATCH. |
|
metadata.vendor_name |
Set to VMware. |
Change Log
View the Change Log for this parser
Need more help? Get answers from Community members and Google SecOps professionals.