metricbeat收集redis日志以及系统日志

注:部分说明省略

一、拉取镜像

docker pull elastic/metricbeat:7.7.0

二、编写metricbeat.yml配置文件

metricbeat.modules:
  #-------------------------------- System Module --------------------------------
  - module: system
    metricsets:
      - cpu             # CPU usage
      - load            # CPU load averages
      - memory          # Memory usage
      - network         # Network IO
      - process         # Per process metrics
      - process_summary # Process summary
      - uptime          # System Uptime
      - socket_summary  # Socket summary
      #- core           # Per CPU core usage
      #- diskio         # Disk IO
      #- filesystem     # File system usage for each mountpoint
      #- fsstat         # File system summary metrics
      #- raid           # Raid
      #- socket         # Sockets and connection info (linux only)
      #- service        # systemd service information
    period: 100s
    process.include_top_n:
      by_cpu: 5
      by_memory: 5
    processors:
      - add_fields:
          # target: ''时,属性设置为顶级属性,否则属于target的value值下的属性
          target: ''
          fields:
            env: test
            source: system
            type: metrics
            from: host

  #---------------------------- redis Status Module ----------------------------
  - module: redis
    metricsets: ["info", "key", "keyspace"]
    hosts: ["192.168.1.110:6379", "192.168.1.121:6379", "192.168.1.110:7000"]
    period: 100s
    #password: foobared
    # 收集名称以test- *开头且限制为20个键的所有键的信息
    key.patterns:
      - pattern: 'test-*'
        limit: 20

    processors:
#      - include_fields:
#          fields: ["beat", "metricset", "redis.info.stats"]
      - add_fields:
          target: ''
          fields:
            env: test
            source: facility
            type: metrics
            from: redis

#----------------------------- Logstash output --------------------------------
output.logstash:
  hosts: ["192.168.1.110:9600"]



三、编写docker-compose.yml文件

version: '3'

services:
  metricbeat:
    image: elastic/metricbeat:7.7.0
    container_name: metricbeat
    volumes:
      - $(PWD)/config/metricbeat.yml:/usr/share/metricbeat/metricbeat.yml:ro
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - /sys/fs/cgroup:/hostfs/sys/fs/cgroup:ro
      - /proc:/hostfs/proc:ro
      - /:/hostfs:ro
      # - /etc/timezone:/etc/timezone:ro
      # - /etc/localtime:/etc/localtime:ro

四、启动容器

五、查看结果

metricbeat收集redis日志以及系统日志_第1张图片

 

你可能感兴趣的:(redis,docker,ELK)