收集 VMware Tanzu 日志

支持的环境:

本文档介绍了如何使用 Bindplane 代理将 VMware Tanzu 日志注入 Google Security Operations。

VMware Tanzu 是一个 Kubernetes 平台,可为 Kubernetes API 服务器事件、资源访问、身份验证决策和配置更改生成 JSON 和 syslog 格式的审核日志。解析器会从 JSON 格式的审核日志中提取字段,并将其映射到统一数据模型 (UDM)。

准备工作

请确保满足以下前提条件:

  • Google SecOps 实例
  • Windows Server 2016 或更高版本,或者具有 systemd 的 Linux 主机
  • Bindplane 代理与 Tanzu Operations Manager 之间的网络连接
  • 如果通过代理运行,请确保防火墙端口根据 Bindplane 代理要求处于开放状态
  • 对 VMware Tanzu 的特权访问权限

获取 Google SecOps 注入身份验证文件

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 收集代理
  3. 下载注入身份验证文件
  4. 将该文件安全地保存在将安装 Bindplane 的系统上。

获取 Google SecOps 客户 ID

  1. 登录 Google SecOps 控制台。
  2. 前往 SIEM 设置 > 个人资料
  3. 组织详细信息 部分复制并保存客户 ID

安装 Bindplane 代理

按照以下说明在 Windows 或 Linux 操作系统上安装 Bindplane 代理。

Windows 安装

  1. 以管理员身份打开命令提示符PowerShell
  2. 运行以下命令:

    msiexec /i "https://github.com/observIQ/bindplane-agent/releases/latest/download/observiq-otel-collector.msi" /quiet
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sc query observiq-otel-collector
    

    该服务应显示为正在运行

Linux 安装

  1. 打开具有根权限或 sudo 权限的终端。
  2. 运行以下命令:

    sudo sh -c "$(curl -fsSlL https://github.com/observiq/bindplane-agent/releases/latest/download/install_unix.sh)" install_unix.sh
    
  3. 等待安装完成。

  4. 运行以下命令,验证安装是否成功:

    sudo systemctl status observiq-otel-collector
    

    该服务应显示为 active (running)

其他安装资源

如需了解其他安装选项和问题排查信息,请参阅 Bindplane 代理安装指南

配置 Bindplane 代理以注入 syslog 并发送到 Google SecOps

找到配置文件

  • Linux

    sudo nano /opt/observiq-otel-collector/config.yaml
    
  • Windows

    notepad "C:\Program Files\observIQ OpenTelemetry Collector\config.yaml"
    

修改配置文件

  • config.yaml 的全部内容替换为以下配置:

    receivers:
        udplog:
            listen_address: "0.0.0.0:514"
    
    exporters:
        chronicle/vmware_tanzu:
            compression: gzip
            creds_file_path: '/etc/bindplane-agent/ingestion-auth.json'
            customer_id: '<customer_id>'
            endpoint: malachiteingestion-pa.googleapis.com
            log_type: VMWARE_TANZU
            raw_log_field: body
    
    service:
        pipelines:
            logs/vmware_tanzu_to_chronicle:
                receivers:
                    - udplog
                exporters:
                    - chronicle/vmware_tanzu
    

配置参数

替换以下占位符:

  • 接收器配置

    • listen_address:要监听的 IP 地址和端口:
      • 0.0.0.0 以监听所有接口(推荐)
      • 端口 514 是标准 syslog 端口(在 Linux 上需要 root 权限;对于非 root 用户,请使用 1514
  • 导出器配置

    • creds_file_path:注入身份验证文件的完整路径:
      • Linux: /etc/bindplane-agent/ingestion-auth.json
      • Windows: C:\Program Files\observIQ OpenTelemetry Collector\ingestion-auth.json
    • customer_id:从 Google SecOps 控制台复制的客户 ID
    • endpoint:区域级端点网址:
      • 美国malachiteingestion-pa.googleapis.com
      • 欧洲: europe-malachiteingestion-pa.googleapis.com
      • 亚洲: asia-southeast1-malachiteingestion-pa.googleapis.com
      • 如需查看完整列表,请参阅区域级端点

保存配置文件

  • 修改后,保存文件:
    • Linux:按 Ctrl+O,然后按 Enter,再按 Ctrl+X
    • Windows:依次点击文件 > 保存

重启 Bindplane 代理以应用更改

  • 如需在 Linux 中重启 Bindplane 代理,请运行以下命令:

    sudo systemctl restart observiq-otel-collector
    
    1. 验证服务是否正在运行:

      sudo systemctl status observiq-otel-collector
      
    2. 检查日志中是否存在错误:

      sudo journalctl -u observiq-otel-collector -f
      
  • 如需在 Windows 中重启 Bindplane 代理,请选择以下选项之一:

    • 以管理员身份运行命令提示符或 PowerShell:

      net stop observiq-otel-collector && net start observiq-otel-collector
      
    • 服务控制台:

      1. Win+R,输入 services.msc,然后按 Enter 键。
      2. 找到 observIQ OpenTelemetry Collector
      3. 右键点击并选择重启
      4. 验证服务是否正在运行:

        sc query observiq-otel-collector
        
      5. 检查日志中是否存在错误:

        type "C:\Program Files\observIQ OpenTelemetry Collector\log\collector.log"
        

为 VMware Tanzu 配置 syslog

  1. 登录 Tanzu Operations Manager Web 界面。
  2. 选择您的用户名 ,然后点击设置
  3. 选择 Syslog
  4. 点击 以将系统日志发送到远程服务器。
  5. 提供以下配置详细信息:
    • 地址:输入 Bindplane 代理 IP 地址。
    • 端口:输入 Bindplane 代理端口号。
    • 传输协议:根据您的 Bindplane 代理配置,选择 UDPTCP
  6. 点击保存

UDM 映射表

日志字段 UDM 映射 逻辑
annotations.authorization.k8s.io/decision security_result.action 如果存在注解 authorization.k8s.io/decision,其值将转换为大写。如果大写值为“ALLOW”,则 UDM 字段设置为 ALLOW。否则,该字段设置为 BLOCK。
annotations.authorization.k8s.io/reason security_result.description 如果存在注解 authorization.k8s.io/reason,则使用其值(移除双引号)。
apiVersion metadata.product_version 直接映射。
auditID metadata.product_log_id 直接映射。
kind metadata.product_event_type 直接映射。
objectRef.name target.resource.name 直接映射。
objectRef.namespace target.resource.attribute.labels.keytarget.resource.attribute.labels.value key 设置为“namespace”,value 取自 objectRef.namespace
objectRef.resource target.resource.resource_subtype 直接映射。
objectRef.resourceVersion target.resource.attribute.labels.keytarget.resource.attribute.labels.value key 设置为“resourceVersion”,value 取自 objectRef.resourceVersion
objectRef.uid target.resource.product_object_id 直接映射。
requestReceivedTimestamp / timestamp metadata.event_timestamp 解析器会先尝试解析 requestReceivedTimestamp。如果不存在,则使用从 syslog 前缀提取的 timestamp 字段。
requestURI target.url 直接映射。
responseStatus.code network.http.response_code 转换为整数后直接映射。
sourceIPs principal.ip sourceIPs 数组中的所有 IP 地址都会添加到 principal.ip 数组中。
stage metadata.description 直接映射。
stageTimestamp metadata.collected_timestamp 直接映射。
user.groups principal.user.group_identifiers user.groups 数组中的所有群组都会添加到 principal.user.group_identifiers 数组中。
user.uid principal.user.userid 直接映射。
user.username principal.user.user_display_name 直接映射。
verb network.http.method 转换为大写后直接映射。由 verb 字段确定。如果 verb 为“CREATE”,则事件类型为 USER_RESOURCE_CREATION。如果 verb 为“PATCH”或“UPDATE”,则事件类型为 USER_RESOURCE_UPDATE_CONTENT。如果 verb 为“DELETE”,则事件类型为 USER_RESOURCE_DELETION。否则,如果 verb 不为空,则事件类型为 USER_RESOURCE_ACCESS。如果以上条件均不满足,则事件类型设置为 GENERIC_EVENT。硬编码为“VMWARE_TANZU”。硬编码为“VMWARE”。硬编码为“VMWARE_TANZU”。硬编码为“CLUSTER”。

需要更多帮助?获得社区成员和 Google SecOps 专业人士的解答。