Collect Verba Recording System logs
This document explains how to ingest Verba Recording System logs to Google Security Operations using Bindplane.
Verba Recording System (now Verint) is a communications compliance recording platform used for capturing and archiving voice, video, and messaging interactions. The Bindplane agent collects Verba 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-collectorservice support - If running behind a proxy, ensure firewall ports are open per the Bindplane agent requirements
- Privileged access to the Verba Recording System server with administrator permissions
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 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.
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.yamlwith the following configuration:receivers: filelog: include: - C:\Program Files\Verba\log\*.log start_at: beginning exporters: chronicle/verba_rec: 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: VERBA_REC raw_log_field: body ingestion_labels: env: production service: pipelines: logs/verba_to_chronicle: receivers: - filelog exporters: - chronicle/verba_rec
Configuration parameters
Replace the following placeholders:
Receiver configuration:
filelog: The receiver type for collecting log files from diskinclude: List of file paths to monitor. Default Verba Recording System log locations:C:\Program Files\Verba\log\*.logC:\Verba\log\*.log(alternative installation path)
start_at: Set tobeginningto read existing logs orendto only read new entries
Exporter configuration:
verba_rec: Descriptive name for the exportercreds_file_path: Full path to ingestion authentication file:- Windows:
C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
- Windows:
<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:
VERBA_REC: Log type exactly as it appears in Chronicleingestion_labels: Optional labels in YAML format (for example,env: production)
Pipeline configuration:
verba_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:
- 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 Verba Recording System logging
Verba Recording System stores audit and compliance recording logs on the application server. You can collect logs from the file system or export them from the web console.
Verify log file locations
- Sign in to the Verba Recording System server with administrator privileges.
Navigate to the Verba log directory. Default locations include:
C:\Program Files\Verba\log\- `C:\Verba\log` (alternative installation path)
Ensure the Bindplane agent
includepath inconfig.yamlmatches the actual log file location on your Verba server.
(Optional) Export audit logs from Verba Web Console
- Sign in to the Verba Recording System web console as an administrator.
- Go to System > Logs > Audit Trail.
- Configure the search parameters:
- Date Range: Select the start and end dates.
- Event Category: Select the log categories to export (for example, recording events, user activity, system events, compliance events).
- User: Optionally filter by specific user.
- Click Search to retrieve the audit records.
- Click Export to CSV to download the log data.
Save the exported file to the log directory monitored by the Bindplane agent (for example, `C:\Program Files\Verba\log`).
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
| column2, column3, column4, column5, column7 | metadata.description | Value copied directly if not empty |
| metadata.event_type | Set to "USER_UNCATEGORIZED" if column1 or column6 not empty, else "GENERIC_EVENT" | |
| column1 | principal.user.userid | Value from column1 after applying regex to remove " \([^)]+\)$" if not empty |
| column8 | security_result.action_details | Value copied directly if not empty |
| column2, column3, column4, column5, column7 | security_result.detection_fields | Merged with label objects created from each column if not empty; each label has key set to specific string (e.g., "Timestamp" for column2) and value copied from column |
| column9 | security_result.summary | Value copied directly if not empty |
| column6 | target.user.userid | Value from column6 after applying regex to remove " \([^)]+\)$" if not empty |
| metadata.product_name | Set to "Verba_Recording_Systems" | |
| metadata.vendor_name | Set to "Verba_Recording_Systems" |
Need more help? Get answers from Community members and Google SecOps professionals.