Collect ManageEngine Log360 logs
This document explains how to ingest ManageEngine Log360 logs to Google Security Operations using Bindplane.
ManageEngine Log360 is a unified SIEM and log management solution that collects, monitors, and analyzes logs from multiple sources across your environment. It generates aggregated security event and compliance audit logs. Log360 includes a built-in Syslog Forwarder feature in its EventLog Analyzer component that supports multiple output formats including RFC 5424, RFC 3164, JSON, and custom templates.
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 ManageEngine Log360
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Privileged access to ManageEngine Log360 with administrator permissions
- ManageEngine Log360 installed and configured to collect logs from your environment
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 systemctl status observiq-otel-collectorWindows:
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/log360: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<customer_id>' endpoint: malachiteingestion-pa.googleapis.com log_type: MANAGE_ENGINE_LOG360 raw_log_field: body ingestion_labels: env: production service: pipelines: logs/log360_to_chronicle: receivers: - tcplog exporters: - chronicle/log360
Configuration parameters
Replace the following placeholders:
Receiver configuration:
tcplog: The receiver type based on protocol:udplogfor UDP syslogtcplogfor TCP syslog
0.0.0.0: IP address to listen on:0.0.0.0to listen on all interfaces (recommended)- Specific IP address to listen on one interface
514: Port number to listen on (for example,514,1514,6514)
Exporter configuration:
log360: Descriptive name for the exportercreds_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:
<customer_id>: Customer ID from the previous stependpoint: 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
- US:
MANAGE_ENGINE_LOG360: Log type exactly as it appears in Chronicleingestion_labels: Optional labels in YAML format (for example,env: production)
Pipeline configuration:
log360_to_chronicle: Descriptive name for the pipeline
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 ManageEngine Log360 syslog forwarding
- Sign in to the ManageEngine Log360 console as an administrator.
- Navigate to Settings > Admin Settings > Integrations > Log Forwarding.
- Click Add New Profile.
Configure the forwarding profile with the following settings:
Setting Value Forwarder Name Enter a descriptive name (for example, Chronicle-Bindplane)Destination Server Enter the IP address of the Bindplane agent host Protocol Select TCP or UDP to match the Bindplane receiver type Port Enter the port matching the Bindplane agent receiver configuration (for example, 514)Click Customize to select the log format. Available formats include:
- Rawlog: Forwards the original log as received
- JSON: Forwards logs in structured JSON format
- RFC 5424: Standard syslog format with structured data support
- RFC 5424 With Structured Data: Extended RFC 5424 format
- RFC 3164: Legacy BSD syslog format
- Custom: Define a custom syslog format template
Under Select Devices, add the devices whose logs you want to forward.
Select the forwarding criteria:
- All logs: Forwards all incoming logs from the selected devices
- Exclude: Filters out logs matching specified rules
- Forward Only: Forwards only logs matching specified rules
Click Save.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
| authentication_package | additional.fields | Merged with label object created from authentication_package |
| Logon_type | extensions.auth.mechanism | Set to "NETWORK" if Logon_type == '3'; "BATCH" if '4'; "SERVICE" if '5'; "NETWORK_CLEAR_TEXT" if '8'; "NEW_CREDENTIALS" if '9'; "REMOTE_INTERACTIVE" if '10'; "CACHED_INTERACTIVE" if '11'; "MECHANISM_OTHER" if not empty |
| user | intermediary.hostname | Value copied directly |
| msg | metadata.description | Value copied directly |
| user_present, principal_present | metadata.event_type | Set to "USER_RESOURCE_ACCESS" if user_present == "true"; "STATUS_UPDATE" if principal_present == "true"; else "GENERIC_EVENT" |
| eventid | metadata.product_event_type | Value copied directly |
| principal_domain | principal.administrative_domain | Value copied directly |
| source_ip | principal.asset.ip | Extracted using IP grok pattern, merged if valid |
| source_ip | principal.ip | Extracted using IP grok pattern, merged if valid |
| source_port | principal.port | Value copied directly, converted to integer |
| creator_process_name | principal.process.file.full_path | Value copied directly |
| process_id | principal.process.pid | Value copied directly if not in [""," -"] |
| logon_guid | principal.resource.product_object_id | Value copied directly |
| principal_account_name | principal.user.userid | Value copied directly |
| principal_security_id | principal.user.windows_sid | Value copied directly if matches Windows SID regex |
| channel, principal_logon_id, impersonation_level, restricted_admin_mode, virtual_account, elevated_token, event_in_sequence, logon_process, transited_services, key_length | security_result.detection_fields | Merged with label objects created from each field |
| summary | security_result.description | Value copied directly |
| event | src.asset.software.vendor_name | Value copied directly |
| target_domain | target.administrative_domain | Value copied directly if not in [""," -"] |
| target_account_name | target.user.userid | Value copied directly if not in [""," -"] |
| target_security_id | target.user.windows_sid | Value copied directly if matches Windows SID regex |
Need more help? Get answers from Community members and Google SecOps professionals.