23 lines
817 B
YAML
23 lines
817 B
YAML
# 仅抓取已存在的宿主机 node-exporter。旧 :8080 目标实际返回 nginx 404,
|
||
# 独立 Docker cAdvisor 尚未部署;部署并确认端口后再添加其目标。
|
||
# Kubernetes 容器指标由 kubelet.yaml 的 /metrics/cadvisor 独立采集。
|
||
apiVersion: operator.victoriametrics.com/v1beta1
|
||
kind: VMStaticScrape
|
||
metadata:
|
||
name: docker-hosts
|
||
namespace: monitoring
|
||
labels:
|
||
app.kubernetes.io/part-of: victoria-metrics
|
||
spec:
|
||
jobName: docker-hosts
|
||
targetEndpoints:
|
||
# --- docker-01 (192.168.10.127) ---
|
||
- targets:
|
||
- "192.168.10.127:9100"
|
||
labels:
|
||
job: node-exporter
|
||
host: docker-01
|
||
# --- 新增主机前确认 exporter 已部署且 /metrics 返回成功 ---
|
||
# - targets: ["192.168.10.x:9100"]
|
||
# labels: { job: node-exporter, host: docker-02 }
|