node-exporter with hostname
Go to file
2022-06-02 15:24:57 -04:00
.gitlab Update .gitlab/.gitlab-ci.yml file 2022-06-02 17:23:35 +00:00
.gitattributes added git attributes 2022-06-02 15:24:57 -04:00
Dockerfile Update 2022-06-02 19:15:59 +00:00
entrypoint.sh Update 2022-06-02 19:15:59 +00:00
README.md Fixed 2022-06-02 15:09:23 -04:00

Node-Exporter

This is a copy of prom/node-exporter which also add's the hostname metric.

Example

For the hostname to be detected, you must mount the host's rootfs into the container's /host directory as seen here:

version: '3.8'

services:
  node-exporter:
    image: ztimson/node-exporter:latest
    command:
      - --path.rootfs=/host
    volumes:
      - /:/host:ro,rslave
    networks:
      - network
    deploy:
      mode: global