2021-09-21 10:18:34 +00:00
|
|
|
// Copyright 2021 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-07-25 14:17:57 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
|
2021-09-21 12:44:11 +00:00
|
|
|
"github.com/go-kit/log/level"
|
2017-07-25 14:17:57 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2021-09-21 12:44:11 +00:00
|
|
|
"github.com/prometheus/common/promlog"
|
|
|
|
"github.com/prometheus/common/promlog/flag"
|
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
|
2021-09-21 12:44:11 +00:00
|
|
|
|
|
|
|
promlogConfig = &promlog.Config{}
|
|
|
|
logger = promlog.New(promlogConfig)
|
2017-07-25 14:17:57 +00:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Debug(logger).Log("msg", "Scraping target", "target", target, "module", module)
|
2017-07-25 14:17:57 +00:00
|
|
|
|
|
|
|
registry := prometheus.NewRegistry()
|
2021-05-19 21:27:29 +00:00
|
|
|
remoteCollector := metaCollector{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:
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Error(logger).Log("msg", "Only POST requests allowed", "url", r.URL)
|
2018-08-10 15:42:19 +00:00
|
|
|
w.Header().Set("Allow", "POST")
|
|
|
|
http.Error(w, "Only POST requests allowed", http.StatusMethodNotAllowed)
|
2017-07-25 14:17:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2021-09-21 12:44:11 +00:00
|
|
|
flag.AddFlags(kingpin.CommandLine, promlogConfig)
|
2019-02-20 19:11:49 +00:00
|
|
|
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()
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Info(logger).Log("msg", "Starting ipmi_exporter", "version", version.Info())
|
2017-07-25 14:17:57 +00:00
|
|
|
|
|
|
|
// Bail early if the config is bad.
|
|
|
|
if err := sc.ReloadConfig(*configFile); err != nil {
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Error(logger).Log("msg", "Error parsing config file", "error", err)
|
|
|
|
os.Exit(1)
|
2017-07-25 14:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Error(logger).Log("msg", "Error reloading config", "error", err)
|
2017-07-25 14:17:57 +00:00
|
|
|
}
|
|
|
|
case rc := <-reloadCh:
|
|
|
|
if err := sc.ReloadConfig(*configFile); err != nil {
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Error(logger).Log("msg", "Error reloading config", "error", err)
|
2017-07-25 14:17:57 +00:00
|
|
|
rc <- err
|
|
|
|
} else {
|
|
|
|
rc <- nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2021-05-19 21:27:29 +00:00
|
|
|
localCollector := metaCollector{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>`))
|
|
|
|
})
|
|
|
|
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Info(logger).Log("msg", "Listening on", "address", *listenAddress)
|
2017-07-25 14:17:57 +00:00
|
|
|
err := http.ListenAndServe(*listenAddress, nil)
|
|
|
|
if err != nil {
|
2021-09-21 12:44:11 +00:00
|
|
|
level.Error(logger).Log("msg", "HTTP listener stopped", "error", err)
|
|
|
|
os.Exit(1)
|
2017-07-25 14:17:57 +00:00
|
|
|
}
|
|
|
|
}
|