Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.85 KB

File metadata and controls

38 lines (25 loc) · 1.85 KB

QRadar Exporter

The QRadar Exporter is designed for forwarding logs to a QRadar instance using its Syslog endpoint. This exporter supports customization of data export types and various configuration options to tailor the connection and data handling to specific needs.

Minimum Agent Versions

Supported Pipelines

  • Logs

Configuration

Field Type Default Value Required Description
raw_log_field string false The field name to send raw logs to QRadar.
syslog.endpoint string 127.0.0.1:10514 false The QRadar endpoint.
syslog.transport string tcp false The network protocol to use (e.g., tcp, udp).
syslog.tls.key_file string false Configure the receiver to use TLS.
syslog.tls.cert_file string false Configure the receiver to use TLS.

Raw Log Field

The raw log field is the field name that the exporter will use to send raw logs to QRadar. It is an OTTL expression that can be used to reference any field in the log record. If the field is not present in the log record, the exporter will not send the log to QRadar. The log record context can be viewed here: Log Record Context.

Example Configurations

Syslog Configuration Example

qradar:
  raw_log_field: body
  syslog:
    endpoint: "syslog.example.com:10514"
    network: "tcp"