For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt, and this page is available as Markdown at https://www.tteam.icu/ops/log/%E8%BD%BB%E9%87%8F%E5%8C%96%E6%94%B6%E9%9B%86%E4%B8%8E%E6%B6%88%E8%B4%B9.md.

轻量化收集与消费

收集端

Filebeat

filebeat.docker.yml
filebeat.config:
  modules:
    path: ${path.config}/modules.d/*.yml
    reload.enabled: false

processors:
  - add_cloud_metadata: ~

filebeat.inputs:
  - type: filestream
    paths:
      - /data/logs/*.log
    fields:
      vpc: test
      saltid: test
    fields_under_root: true


output.redis:
  hosts: ["127.0.0.1:6379"]
  password: "password"
  key: "filebeat"
  db: 15
  timeout: 5

  required_acks: 1
  compression: gzip
  max_message_bytes: 1000000

Vector

Tip

这里的密码之前需要加一个冒号,这是官方的规范。

[sources.test]
type = "redis"
key = "filebeat"
url = "redis://:[email protected]:6379/15"
decoding.codec = "json"