眼里有星河

0 声望

这家伙太懒,什么都没留下

个人动态
  • 赞了 Prometheus支持Grafana · 3年前
  • 半兽人 回复 眼里有星河Prometheus安装 中 :

    node-exporter的docker方式确实没有整理,您可以直接分享文章呀,补充一个【docker安装和运行NodeExporter】的文章。
    linux的文章在这里:NodeExporter安装和运行

    3年前
  • 眼里有星河 回复 半兽人Prometheus安装 中 :

    先启动数据采集组件node-exporter

    docker run -d -p 9100:9100 \
    -v "/proc:/host/proc:ro" \
    -v "/sys:/host/sys:ro" \
    -v "/:/rootfs:ro" \
    --net="host" \
    prom/node-exporter
    

    创建prometheus.yaml配置文件

    global:
    scrape_interval: 60s
    evaluation_interval: 60s
    
    scrape_configs:
    
    job_name: prometheus
    static_configs:
    
    targets: ['localhost:9090']
    labels:
    instance: prometheus
    job_name: linux
    static_configs:
    
    targets: ['IP:9100']
    labels:
    instance: localhost
    

    创建Dockerfile文件并生成自己的镜像文件

    docker build -t my-prometheus .
    
    3年前