Collect Kemp Load Balancer logs
This document explains how to ingest Progress Kemp LoadMaster logs to Google Security Operations using the Bindplane agent.
Progress Kemp LoadMaster (formerly Kemp Load Balancer) is an application delivery controller (ADC) that provides load balancing, SSL offloading, and traffic management for enterprise applications. It distributes incoming traffic across multiple servers to ensure high availability, optimize performance, and enhance the security of web-based applications and services.
Before you begin
Make sure you have the following prerequisites:
- A Google SecOps instance
- A Windows 2016 or later or Linux host with
systemd - If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Privileged access to the Progress Kemp LoadMaster web user interface (WUI)
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 Bindplane Agent
Install the Bindplane agent on your Windows or Linux operating system according to the following instructions.
Windows Installation
- Open the 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" /quiet
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.sh
Additional Installation Resources
For additional installation options, consult this installation guide.
Configure the Bindplane Agent to ingest Syslog and send to Google SecOps
Access the Configuration File:
- Locate the
config.yamlfile. Typically, it's in the/etc/bindplane-agent/directory on Linux or in the installation directory on Windows. - Open the file using a text editor (for example,
nano,vi, or Notepad).
- Locate the
Edit the
config.yamlfile as follows:receivers: udplog: # Replace the port and IP address as required listen_address: "0.0.0.0:514" exporters: chronicle/chronicle_w_labels: compression: gzip # Adjust the path to the credentials file you downloaded in Step 1 creds_file_path: '/path/to/ingestion-authentication-file.json' # Replace with your actual customer ID from Step 2 customer_id: YOUR_CUSTOMER_ID_HERE endpoint: malachiteingestion-pa.googleapis.com # Add optional ingestion labels for better organization log_type: 'KEMP_LOADBALANCER' raw_log_field: body ingestion_labels: service: pipelines: logs/source0__chronicle_w_labels-0: receivers: - udplog exporters: - chronicle/chronicle_w_labelsReplace the port and IP address as required in your infrastructure.
Replace
YOUR_CUSTOMER_ID_HEREwith the actual Customer ID.Update
/path/to/ingestion-authentication-file.jsonto the file path where the authentication file was saved in Step 1.Update the
endpointvalue to match your tenant's region.
Restart Bindplane Agent to apply the changes
To restart the Bindplane agent in Linux, run the following command:
sudo systemctl restart observiq-otel-collectorTo restart the Bindplane agent in Windows, you can either use the Services console or enter the following command:
net stop observiq-otel-collector && net start observiq-otel-collector
Configure Progress Kemp LoadMaster syslog forwarding
- Sign in to the Progress Kemp LoadMaster web user interface (WUI).
- Go to System Configuration > Logging Options > Syslog Options.
- In the Remote Syslog Host field, enter the IP address of the Bindplane agent host (for example,
192.168.1.100). - In the Remote Syslog Port field, enter
514(or the port configured in Bindplane). - Set the Info Syslog Messages option to Yes to enable informational log messages.
- Set the Warning Syslog Messages option to Yes to enable warning messages.
- Set the Error Syslog Messages option to Yes to enable error messages.
- Set the Critical Syslog Messages option to Yes to enable critical messages.
- Set the Emergency Syslog Messages option to Yes to enable emergency messages.
- Click Set Syslog Parameters to save the configuration.
- To enable WAF syslog logging, go to System Configuration > Logging Options > WAF Syslog Options.
- Set the Remote Syslog option to Yes.
Click Set WAF Syslog Parameters to save.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
hlen_label |
additional.fields |
Merged |
meta_sequenceId_label |
additional.fields |
Merged |
nhdrs_label |
additional.fields |
Merged |
intermediary |
intermediary |
Merged |
inter_hostname |
intermediary.hostname |
Directly mapped |
description |
metadata.description |
Directly mapped |
event_type |
metadata.event_type |
Renamed/mapped |
log_event |
metadata.product_event_type |
Directly mapped |
sequenceId |
metadata.product_log_id |
Directly mapped |
ftpmethod |
network.ftp.command |
Directly mapped |
http_method |
network.http.method |
Directly mapped |
http_response_code |
network.http.response_code |
Directly mapped |
process_name |
principal.application |
Directly mapped |
src_ip |
principal.ip |
Merged |
srcip |
principal.ip |
Merged |
src_port |
principal.port |
Directly mapped |
srcport |
principal.port |
Directly mapped |
sec_result |
security_result |
Merged |
sshd |
target.application |
Directly mapped |
filename |
target.file.full_path |
Directly mapped |
file_size |
target.file.size |
Renamed/mapped |
dest_ip |
target.ip |
Merged |
dstip |
target.ip |
Merged |
vs |
target.ip |
Merged |
dest_port |
target.port |
Directly mapped |
dstport |
target.port |
Directly mapped |
vs_port |
target.port |
Directly mapped |
pid |
target.process.pid |
Directly mapped |
http_path |
target.url |
Directly mapped |
resource |
target.url |
Directly mapped |
user |
target.user.userid |
Directly mapped |
| N/A | additional.fields |
Constant: meta_sequenceId_label |
| N/A | extensions.auth.type |
Constant: AUTHTYPE_UNSPECIFIED |
| N/A | intermediary |
Constant: intermediary |
| N/A | metadata.event_type |
Constant: GENERIC_EVENT |
| N/A | metadata.product_name |
Constant: KEMP_LOADBALANCER |
| N/A | metadata.vendor_name |
Constant: KEMP |
| N/A | network.application_protocol |
Constant: HTTP |
| N/A | principal.ip |
Constant: src_ip |
| N/A | security_result |
Constant: sec_result |
| N/A | target.ip |
Constant: dest_ip |
For more information about the parser field mapping, see the KEMP_LOADBALANCER parser reference.
Need more help? Get answers from Community members and Google SecOps professionals.