Collect Brocade ServerIron ADX logs
This document explains how to ingest Brocade ServerIron ADX logs to Google Security Operations using the Bindplane agent.
Brocade ServerIron ADX is an application delivery controller that generates syslog messages for authentication, load balancing, network events, and system activity. The parser extracts fields using grok patterns and maps them to the Unified Data Model (UDM).
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 the Brocade ServerIron ADX device
- If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Administrative access to the Brocade ServerIron ADX CLI
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 the Bindplane agent 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-collectorThe 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-collectorThe 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 /etc/bindplane-agent/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: udplog: listen_address: "0.0.0.0:514" exporters: chronicle/brocade_serveriron: compression: gzip creds_file_path: '/etc/bindplane-agent/ingestion-auth.json' customer_id: '<customer_id>' endpoint: malachiteingestion-pa.googleapis.com log_type: BROCADE_SERVERIRON raw_log_field: body service: pipelines: logs/brocade_serveriron_to_chronicle: receivers: - udplog exporters: - chronicle/brocade_serveriron
Configuration parameters
Replace the following placeholders:
Receiver configuration:
listen_address: IP address and port to listen on:0.0.0.0to listen on all interfaces (recommended)- Port
514is the standard syslog port (requires root on Linux; use1514for non-root)
Exporter configuration:
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:
customer_id: Customer ID copied from the Google SecOps consoleendpoint: 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:
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:
```bash sudo systemctl status observiq-otel-collector ```Check logs for errors:
```bash 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-collectorServices console:
- Press
Win+R, typeservices.msc, and press Enter. - Locate observIQ OpenTelemetry Collector.
- Right-click and select Restart.
Verify the service is running:
sc query observiq-otel-collectorCheck logs for errors:
type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
- Press
Configure syslog export from Brocade ServerIron ADX
Sign in to the ADX device and enter global configuration mode:
enable configure terminalEnable syslog logging:
logging onSpecify the IP address and port of the syslog server (Bindplane):
logging host <syslog-server-ip> udp port 514Optional: Set the syslog facility (
local0tolocal7):logging facility local0Define the minimum severity level of logs to send to the syslog server:
logging trap <severity-level>Save the configuration:
write memory
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
%{GREEDYDATA} |
metadata.description |
The %{GREEDYDATA} field is mapped to metadata.description when it matches the "-- %{GREEDYDATA} --" pattern. |
%{GREEDYDATA:auth_result} |
security_result.description |
The %{GREEDYDATA:auth_result} field is concatenated with the %{GREEDYDATA:desc} field to form the security_result.description when %{GREEDYDATA:desc} is present. |
%{GREEDYDATA:desc} |
security_result.description |
The %{GREEDYDATA:desc} field is used to populate the security_result.description field. It can be concatenated with other fields depending on the raw log format. |
%{GREEDYDATA:login_to} |
security_result.description |
The %{GREEDYDATA:login_to} field is concatenated with the %{GREEDYDATA:desc} field to form the security_result.description when %{GREEDYDATA:desc} is present. |
%{GREEDYDATA:user} |
target.user.userid |
The %{GREEDYDATA:user} field is mapped to target.user.userid. |
%{HOST:principal_host} |
principal.hostname |
The %{HOST:principal_host} field is mapped to principal.hostname. |
%{HOST:target_host} |
target.hostname |
The %{HOST:target_host} field is mapped to target.hostname. |
%{INT:http_port} |
additional.fields.value.string_value |
The %{INT:http_port} field is mapped to additional.fields.value.string_value with key "HTTP Port". |
%{INT:target_port} |
target.port |
The %{INT:target_port} field is mapped to target.port and converted to an integer. |
%{INT:telnet_port} |
additional.fields.value.string_value |
The %{INT:telnet_port} field is mapped to additional.fields.value.string_value with key "Telnet Port". |
%{INT:tftp_port} |
additional.fields.value.string_value |
The %{INT:tftp_port} field is mapped to additional.fields.value.string_value with key "TFTP Port". |
%{IP:principal_ip} |
principal.ip |
The %{IP:principal_ip} field is mapped to principal.ip. |
%{IP:target_ip} |
target.ip |
The %{IP:target_ip} field is mapped to target.ip. |
%{IPV4:principal_ip} |
principal.ip |
The %{IPV4:principal_ip} field is mapped to principal.ip. |
%{IPV4:target_ip} |
target.ip |
The %{IPV4:target_ip} field is mapped to target.ip. |
%{MAC:principal_mac} |
principal.mac |
The %{MAC:principal_mac} field is mapped to principal.mac after converting it to the format [0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}. |
%{USERNAME:target_host} |
target.hostname |
The %{USERNAME:target_host} field is mapped to target.hostname. |
%{USERNAME:user} |
target.user.userid |
The %{USERNAME:user} field is mapped to target.user.userid. |
%{WORD:auth_result} |
security_result.description |
The %{WORD:auth_result} field is concatenated with the %{GREEDYDATA:desc} field to form the security_result.description when %{GREEDYDATA:desc} is present. |
%{WORD:proto} |
network.application_protocol |
The %{WORD:proto} field is mapped to network.application_protocol when its value is 'SSH'. |
timestamp |
metadata.event_timestamp |
The timestamp field is parsed from the raw log data using a grok pattern and converted to a timestamp object. |
extensions.auth.type |
The value is set to "MACHINE" if the proto field is not empty and the auth_action field is either "logout" or "login". | |
metadata.description |
The field is populated with the value of the "metadata_description" field if it's not empty. | |
metadata.event_type |
The field is populated based on the values of other fields using conditional logic:- STATUS_STARTUP: if target_port_status is "up".- STATUS_SHUTDOWN: if target_port_status is "down".- USER_LOGOUT: if proto is not empty and auth_action is "logout".- USER_LOGIN: if proto is not empty and auth_action is "login".- STATUS_UPDATE: if metadata_description matches "state changed".- GENERIC_EVENT: if none of the preceding conditions are met. | |
metadata.log_type |
The value is hardcoded to "BROCADE_SERVERIRON". | |
metadata.product_name |
The value is hardcoded to "ServerIron". | |
metadata.vendor_name |
The value is hardcoded to "Brocade". | |
security_result.action |
The value is set to "BLOCK" if the desc field contains "fail", or the auth_result field contains "fail" or "rejected". |
Need more help? Get answers from Community members and Google SecOps professionals.