镜像概览

完整引用
docker.io/zabbix/zabbix-agent
Registry
docker.io
命名空间
zabbix
仓库
zabbix-agent
已缓存 Tag 数
2638
最近同步
07/05/2026, 04:59 AM

简介

Zabbix Agent 监控采集镜像,在被监控主机上采集 CPU、内存、磁盘与进程指标,上报 Zabbix Server 实现基础设施监控。

详细介绍

zabbix/zabbix-agent 运行 Zabbix Agent 2 守护进程,通过主动/被动模式向 Zabbix Server 上报主机资源与自定义监控项数据。定位为基础设施监控采集端,需配置 Server 地址与 Hostname;K8s DaemonSet 或 docker 旁路部署于每台待监控节点。

快速启动

docker run -d --name zabbix-agent \
  -e ZBX_SERVER_HOST=zabbix-server \
  -e ZBX_HOSTNAME=$(hostname) \
  docker.io/zabbix/zabbix-agent:latest

推荐实践

docker run -d --name zabbix-agent \
  --restart unless-stopped \
  -e ZBX_SERVER_HOST=zabbix.internal \
  -e ZBX_HOSTNAME=prod-node-01 \
  -v /proc:/host/proc:ro -v /sys:/host/sys:ro \
  docker.io/zabbix/zabbix-agent:7.0.0-alpine

核心参数说明

  • -e ZBX_SERVER_HOST — Zabbix Server 地址
  • -e ZBX_HOSTNAME — 主机在 Zabbix 中的唯一标识
  • -v /proc:/host/proc:ro — 挂载宿主机 proc 采集系统指标
  • --restart unless-stopped — 监控 agent 持续在线

Kubernetes

apiVersion: apps/v1
kind: DaemonSet
metadata:
  name: zabbix-agent
spec:
  selector:
    matchLabels:
      app: zabbix-agent
  template:
    metadata:
      labels:
        app: zabbix-agent
    spec:
      containers:
        - name: agent
          image: docker.io/zabbix/zabbix-agent:7.0.0-alpine
          env:
            - name: ZBX_SERVER_HOST
              value: zabbix-server
            - name: ZBX_HOSTNAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
          volumeMounts:
            - name: proc
              mountPath: /host/proc
              readOnly: true
      volumes:
        - name: proc
          hostPath:
            path: /proc
---
apiVersion: v1
kind: Service
metadata:
  name: zabbix-agent
spec:
  selector:
    app: zabbix-agent
  ports:
    - port: 10050
      targetPort: 10050

DaemonSet 覆盖全部节点;Zabbix Server 需可达 agent 10050 端口。

最新 Tag(20 条)

查看全部 2638 个 Tag →
Tag架构推送时间大小Digest同步期望操作
docker.io/zabbix/zabbix-agent
:trunk-ltsc2022
windows/amd64
2026/06/27 14:21235.1 MBsha256:4c0d7600dba4
docker.io/zabbix/zabbix-agent
:ltsc2022-trunk
windows/amd64
2026/06/27 14:21235.1 MBsha256:4c0d7600dba4
docker.io/zabbix/zabbix-agent
:ltsc2022-latest
windows/amd64
2026/06/26 14:51234.7 MBsha256:cc3ca0a5c138
docker.io/zabbix/zabbix-agent
:7.4-ltsc2022-latest
windows/amd64
2026/06/26 14:51234.7 MBsha256:cc3ca0a5c138
docker.io/zabbix/zabbix-agent
:ltsc2022-7.4-latest
windows/amd64
2026/06/26 14:51234.7 MBsha256:cc3ca0a5c138
docker.io/zabbix/zabbix-agent
:trunk-centos
linux/amd64linux/arm64linux/ppc64le
2026/06/25 18:0960.5 MBsha256:32ee71751625
docker.io/zabbix/zabbix-agent
:centos-trunk
linux/amd64linux/arm64linux/ppc64le
2026/06/25 18:0960.5 MBsha256:32ee71751625
docker.io/zabbix/zabbix-agent
:trunk-ubuntu
linux/amd64linux/arm64linux/ppc64le
2026/06/25 18:0346.9 MBsha256:aee6a05f7869
docker.io/zabbix/zabbix-agent
:ubuntu-trunk
linux/amd64linux/arm64linux/ppc64le
2026/06/25 18:0346.9 MBsha256:aee6a05f7869
docker.io/zabbix/zabbix-agent
:trunk-alpine
linux/amd64linux/arm64linux/s390xlinux/ppc64lelinux/riscv64
2026/06/25 18:038.8 MBsha256:566104ad1756
docker.io/zabbix/zabbix-agent
:alpine-trunk
linux/amd64linux/arm64linux/s390xlinux/ppc64lelinux/riscv64
2026/06/25 18:028.8 MBsha256:566104ad1756
docker.io/zabbix/zabbix-agent
:trunk-ol
linux/amd64linux/arm64
2026/06/25 17:5946.1 MBsha256:9f0a1e04b633
docker.io/zabbix/zabbix-agent
:ol-trunk
linux/amd64linux/arm64
2026/06/25 17:5946.1 MBsha256:9f0a1e04b633
docker.io/zabbix/zabbix-agent
:7.0-alpine-latest
linux/amd64linux/arm64linux/s390xlinux/ppc64le
2026/06/21 22:548.8 MBsha256:edfa1d2c7ba7
docker.io/zabbix/zabbix-agent
:alpine-7.0-latest
linux/amd64linux/arm64linux/s390xlinux/ppc64le
2026/06/21 22:548.8 MBsha256:edfa1d2c7ba7
docker.io/zabbix/zabbix-agent
:7.0-ubuntu-latest
linux/amd64linux/arm64linux/ppc64le
2026/06/21 22:5146.8 MBsha256:f9d33868387d
docker.io/zabbix/zabbix-agent
:ubuntu-7.0-latest
linux/amd64linux/arm64linux/ppc64le
2026/06/21 22:5146.8 MBsha256:f9d33868387d
docker.io/zabbix/zabbix-agent
:7.0-centos-latest
linux/amd64linux/arm64
2026/06/21 22:4860.4 MBsha256:637066433e71
docker.io/zabbix/zabbix-agent
:centos-7.0-latest
linux/amd64linux/arm64
2026/06/21 22:4860.4 MBsha256:637066433e71
docker.io/zabbix/zabbix-agent
:7.0-ol-latest
linux/amd64linux/arm64
2026/06/21 22:4846.0 MBsha256:1c085f3c31f1