ipmi_exporter
Remote IPMI exporter for Prometheus
File Explorer
Download Latest Version (.zip)- approve-workflows.yml
- ci.yml
- container_description.yml
- golangci-lint.yml
- govulncheck.yml
- dependabot.yml
- configuration.md
- metrics.md
- native.md
- privileges.md
- freeipmi.go
- .dockerignore
- .gitignore
- .golangci.yml
- .promu.yml
- .yamllint
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- collector.go
- collector_bmc.go
- collector_bmc_native.go
- collector_bmc_watchdog.go
- collector_bmc_watchdog_native.go
- collector_chassis.go
- collector_chassis_native.go
- collector_dcmi.go
- collector_dcmi_native.go
- collector_ipmi.go
- collector_ipmi_native.go
- collector_sel.go
- collector_sel_events.go
- collector_sel_events_native.go
- collector_sel_native.go
- collector_sm_lan_mode.go
- collector_sm_lan_mode_native.go
- config.go
- CONTRIBUTING.md
- docker-compose.yml
- Dockerfile
- go.mod
- go.sum
- ipmi_local.yml
- ipmi_local_sudo.yml
- ipmi_remote.yml
- LICENSE
- main.go
- MAINTAINERS.md
- Makefile
- Makefile.common
- NOTICE
- README.md
- SECURITY.md
- VERSION
# Installation Guide
git clone https://github.com/prometheus-community/ipmi_exporter
Downloads the entire project code from GitHub to your computer.
cd ipmi_exporter
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Go Go is required to use go install.
go install github.com/prometheus-community/ipmi_exporter@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
make docker
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
4. Go
Mediumgo install github.com/prometheus-community/ipmi_exporter@latest
Downloads and installs the specified version directly β no need to clone the repo yourself.
Pulled directly from this repo's README.
5. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
make promu
Compiles the code based on the generated build configuration to produce an executable.
make docker
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
