https://github.com/rycus86/docker-prometheus-node-exporter
Exporter for machine metrics https://prometheus.io/ (on ARM)
https://github.com/rycus86/docker-prometheus-node-exporter
Last synced: 5 months ago
JSON representation
Exporter for machine metrics https://prometheus.io/ (on ARM)
- Host: GitHub
- URL: https://github.com/rycus86/docker-prometheus-node-exporter
- Owner: rycus86
- License: mit
- Created: 2017-08-14T20:45:24.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-04T10:33:20.000Z (over 7 years ago)
- Last Synced: 2025-01-23T18:15:37.005Z (over 1 year ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prometheus node exporter on ARM
This project produces [Node exporter](https://github.com/prometheus/node_exporter)
Docker images for [Prometheus](https://prometheus.io) on *ARM* hosts.
The available tags are:
- `armhf`: for *32-bits ARM* hosts (built on [Travis](https://travis-ci.org/rycus86/docker-prometheus-node-exporter))
[](https://microbadger.com/images/rycus86/prometheus-node-exporter:armhf "Get your own image badge on microbadger.com")
- `aarch64`: for *64-bits ARM* hosts (also built on Travis)
[](https://microbadger.com/images/rycus86/prometheus-node-exporter:aarch64 "Get your own image badge on microbadger.com")
The images are all based on *Alpine Linux* with the *ARM* images having a
small *QEMU* binary to be able to build them on *x64* hosts.
## Usage
The image uses a similar startup command to the offical
[prom/node-exporter](https://hub.docker.com/r/prom/node-exporter/) image's.
To run it, use:
```shell
docker run -d -p 9100:9100 \
-v "/proc:/host/proc:ro" \
-v "/sys:/host/sys:ro" \
-v "/:/rootfs:ro" \
--net="host" \
rycus86/prometheus-node-exporter:aarch64 \
--path.procfs /host/proc \
--path.sysfs /host/sys \
--collector.filesystem.ignored-mount-points "^/(sys|proc|dev|host|etc)($|/)"
```
This will start the exporter on port *9100* on *64-bits ARM* hosts.