2017-07-25 14:17:57 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
|
|
"github.com/prometheus/common/log"
|
2019-07-15 08:43:46 +00:00
|
|
|
"github.com/prometheus/common/version"
|
2019-02-20 19:11:49 +00:00
|
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
2017-07-25 14:17:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-02-20 19:11:49 +00:00
|
|
|
configFile = kingpin.Flag(
|
|
|
|
"config.file",
|
2017-07-25 14:17:57 +00:00
|
|
|
"Path to configuration file.",
|
2018-09-21 19:50:30 +00:00
|
|
|
).String()
|
2019-02-20 19:11:49 +00:00
|
|
|
executablesPath = kingpin.Flag(
|
|
|
|
"freeipmi.path",
|
2017-07-25 14:17:57 +00:00
|
|
|
"Path to FreeIPMI executables (default: rely on $PATH).",
|
2019-02-20 19:11:49 +00:00
|
|
|
).String()
|
|
|
|
listenAddress = kingpin.Flag(
|
|
|
|
"web.listen-address",
|
2017-07-25 14:17:57 +00:00
|
|
|
"Address to listen on for web interface and telemetry.",
|
2019-02-20 19:11:49 +00:00
|
|
|
).Default(":9290").String()
|
2017-07-25 14:17:57 +00:00
|
|
|
|
|
|
|
sc = &SafeConfig{
|
|
|
|
C: &Config{},
|
|
|
|
}
|
|
|
|
reloadCh chan chan error
|
|
|
|
)
|
|
|
|
|
2018-09-21 09:41:59 +00:00
|
|
|
func remoteIPMIHandler(w http.ResponseWriter, r *http.Request) {
|
2017-07-25 14:17:57 +00:00
|
|
|
target := r.URL.Query().Get("target")
|
|
|
|
if target == "" {
|
|
|
|
http.Error(w, "'target' parameter must be specified", 400)
|
|
|
|
return
|
|
|
|
}
|
2018-09-21 19:50:30 +00:00
|
|
|
|
|
|
|
// Remote scrape will not work without some kind of config, so be pedantic about it
|
|
|
|
module := r.URL.Query().Get("module")
|
|
|
|
if module == "" {
|
|
|
|
module = "default"
|
|
|
|
}
|
|
|
|
if !sc.HasModule(module) {
|
|
|
|
http.Error(w, fmt.Sprintf("Unknown module %q", module), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugf("Scraping target '%s' with module '%s'", target, module)
|
2017-07-25 14:17:57 +00:00
|
|
|
|
|
|
|
registry := prometheus.NewRegistry()
|
2018-09-21 19:50:30 +00:00
|
|
|
remoteCollector := collector{target: target, module: module, config: sc}
|
2018-08-03 14:23:35 +00:00
|
|
|
registry.MustRegister(remoteCollector)
|
2017-07-25 14:17:57 +00:00
|
|
|
h := promhttp.HandlerFor(registry, promhttp.HandlerOpts{})
|
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateConfiguration(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case "POST":
|
|
|
|
rc := make(chan error)
|
|
|
|
reloadCh <- rc
|
|
|
|
if err := <-rc; err != nil {
|
|
|
|
http.Error(w, fmt.Sprintf("failed to reload config: %s", err), http.StatusInternalServerError)
|
|
|
|
}
|
|
|
|
default:
|
2018-08-10 15:42:19 +00:00
|
|
|
log.Errorf("Only POST requests allowed for %s", r.URL)
|
|
|
|
w.Header().Set("Allow", "POST")
|
|
|
|
http.Error(w, "Only POST requests allowed", http.StatusMethodNotAllowed)
|
2017-07-25 14:17:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2019-02-20 19:11:49 +00:00
|
|
|
log.AddFlags(kingpin.CommandLine)
|
|
|
|
kingpin.HelpFlag.Short('h')
|
2019-07-15 08:43:46 +00:00
|
|
|
kingpin.Version(version.Print("ipmi_exporter"))
|
2019-02-20 19:11:49 +00:00
|
|
|
kingpin.Parse()
|
2017-07-25 14:17:57 +00:00
|
|
|
log.Infoln("Starting ipmi_exporter")
|
|
|
|
|
|
|
|
// Bail early if the config is bad.
|
|
|
|
if err := sc.ReloadConfig(*configFile); err != nil {
|
|
|
|
log.Fatalf("Error parsing config file: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
hup := make(chan os.Signal)
|
|
|
|
reloadCh = make(chan chan error)
|
|
|
|
signal.Notify(hup, syscall.SIGHUP)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-hup:
|
|
|
|
if err := sc.ReloadConfig(*configFile); err != nil {
|
|
|
|
log.Errorf("Error reloading config: %s", err)
|
|
|
|
}
|
|
|
|
case rc := <-reloadCh:
|
|
|
|
if err := sc.ReloadConfig(*configFile); err != nil {
|
|
|
|
log.Errorf("Error reloading config: %s", err)
|
|
|
|
rc <- err
|
|
|
|
} else {
|
|
|
|
rc <- nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-09-21 19:50:30 +00:00
|
|
|
localCollector := collector{target: targetLocal, module: "default", config: sc}
|
2018-08-03 14:23:35 +00:00
|
|
|
prometheus.MustRegister(&localCollector)
|
|
|
|
|
|
|
|
http.Handle("/metrics", promhttp.Handler()) // Regular metrics endpoint for local IPMI metrics.
|
2018-09-21 09:41:59 +00:00
|
|
|
http.HandleFunc("/ipmi", remoteIPMIHandler) // Endpoint to do IPMI scrapes.
|
2017-07-25 14:17:57 +00:00
|
|
|
http.HandleFunc("/-/reload", updateConfiguration) // Endpoint to reload configuration.
|
|
|
|
|
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte(`<html>
|
|
|
|
<head>
|
|
|
|
<title>IPMI Exporter</title>
|
|
|
|
<style>
|
|
|
|
label{
|
|
|
|
display:inline-block;
|
|
|
|
width:75px;
|
|
|
|
}
|
|
|
|
form label {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
form input {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>IPMI Exporter</h1>
|
|
|
|
<form action="/ipmi">
|
|
|
|
<label>Target:</label> <input type="text" name="target" placeholder="X.X.X.X" value="1.2.3.4"><br>
|
|
|
|
<input type="submit" value="Submit">
|
2018-08-03 14:23:35 +00:00
|
|
|
</form>
|
|
|
|
<p><a href="/metrics">Local metrics</a></p>
|
|
|
|
<p><a href="/config">Config</a></p>
|
2017-07-25 14:17:57 +00:00
|
|
|
</body>
|
|
|
|
</html>`))
|
|
|
|
})
|
|
|
|
|
|
|
|
log.Infof("Listening on %s", *listenAddress)
|
|
|
|
err := http.ListenAndServe(*listenAddress, nil)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|