2015-09-26 08:36:40 -07:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2013-05-07 07:40:10 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-10-14 05:23:42 -07:00
|
|
|
"fmt"
|
2020-11-14 02:53:51 -08:00
|
|
|
stdlog "log"
|
2014-02-18 03:35:11 -08:00
|
|
|
"net/http"
|
2015-03-05 08:02:17 -08:00
|
|
|
_ "net/http/pprof"
|
2019-12-31 08:19:37 -08:00
|
|
|
"os"
|
2021-01-22 14:53:56 -08:00
|
|
|
"os/user"
|
2018-03-29 05:42:44 -07:00
|
|
|
"sort"
|
2014-02-07 08:09:39 -08:00
|
|
|
|
2020-05-01 05:26:51 -07:00
|
|
|
"github.com/prometheus/common/promlog"
|
|
|
|
"github.com/prometheus/common/promlog/flag"
|
|
|
|
|
2020-11-14 02:53:51 -08:00
|
|
|
"github.com/go-kit/log"
|
|
|
|
"github.com/go-kit/log/level"
|
2014-02-18 03:35:11 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2021-07-06 02:51:16 -07:00
|
|
|
promcollectors "github.com/prometheus/client_golang/prometheus/collectors"
|
2017-01-05 10:30:48 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2016-04-30 10:58:17 -07:00
|
|
|
"github.com/prometheus/common/version"
|
2021-01-17 23:20:33 -08:00
|
|
|
"github.com/prometheus/exporter-toolkit/web"
|
2022-10-23 03:45:29 -07:00
|
|
|
"github.com/prometheus/exporter-toolkit/web/kingpinflag"
|
2014-02-18 03:35:11 -08:00
|
|
|
"github.com/prometheus/node_exporter/collector"
|
2020-02-20 02:03:33 -08:00
|
|
|
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
2013-05-07 07:40:10 -07:00
|
|
|
)
|
|
|
|
|
2018-11-08 07:26:21 -08:00
|
|
|
// handler wraps an unfiltered http.Handler but uses a filtered handler,
|
|
|
|
// created on the fly, if filtering is requested. Create instances with
|
|
|
|
// newHandler.
|
|
|
|
type handler struct {
|
|
|
|
unfilteredHandler http.Handler
|
|
|
|
// exporterMetricsRegistry is a separate registry for the metrics about
|
|
|
|
// the exporter itself.
|
|
|
|
exporterMetricsRegistry *prometheus.Registry
|
|
|
|
includeExporterMetrics bool
|
2018-11-20 09:11:40 -08:00
|
|
|
maxRequests int
|
2019-12-31 08:19:37 -08:00
|
|
|
logger log.Logger
|
2016-04-30 10:58:17 -07:00
|
|
|
}
|
|
|
|
|
2019-12-31 08:19:37 -08:00
|
|
|
func newHandler(includeExporterMetrics bool, maxRequests int, logger log.Logger) *handler {
|
2018-11-08 07:26:21 -08:00
|
|
|
h := &handler{
|
|
|
|
exporterMetricsRegistry: prometheus.NewRegistry(),
|
|
|
|
includeExporterMetrics: includeExporterMetrics,
|
2018-11-20 09:11:40 -08:00
|
|
|
maxRequests: maxRequests,
|
2019-12-31 08:19:37 -08:00
|
|
|
logger: logger,
|
2018-11-08 07:26:21 -08:00
|
|
|
}
|
|
|
|
if h.includeExporterMetrics {
|
|
|
|
h.exporterMetricsRegistry.MustRegister(
|
2021-07-06 02:51:16 -07:00
|
|
|
promcollectors.NewProcessCollector(promcollectors.ProcessCollectorOpts{}),
|
|
|
|
promcollectors.NewGoCollector(),
|
2018-11-08 07:26:21 -08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
if innerHandler, err := h.innerHandler(); err != nil {
|
2019-12-31 08:19:37 -08:00
|
|
|
panic(fmt.Sprintf("Couldn't create metrics handler: %s", err))
|
2018-11-08 07:26:21 -08:00
|
|
|
} else {
|
|
|
|
h.unfilteredHandler = innerHandler
|
|
|
|
}
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeHTTP implements http.Handler.
|
|
|
|
func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2017-10-14 05:23:42 -07:00
|
|
|
filters := r.URL.Query()["collect[]"]
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Debug(h.logger).Log("msg", "collect query:", "filters", filters)
|
2017-10-14 05:23:42 -07:00
|
|
|
|
2018-11-08 07:26:21 -08:00
|
|
|
if len(filters) == 0 {
|
|
|
|
// No filters, use the prepared unfiltered handler.
|
|
|
|
h.unfilteredHandler.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// To serve filtered metrics, we create a filtering handler on the fly.
|
|
|
|
filteredHandler, err := h.innerHandler(filters...)
|
2017-10-14 05:23:42 -07:00
|
|
|
if err != nil {
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Warn(h.logger).Log("msg", "Couldn't create filtered metrics handler:", "err", err)
|
2017-10-14 05:23:42 -07:00
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
2018-11-08 07:26:21 -08:00
|
|
|
w.Write([]byte(fmt.Sprintf("Couldn't create filtered metrics handler: %s", err)))
|
2017-10-14 05:23:42 -07:00
|
|
|
return
|
|
|
|
}
|
2018-11-08 07:26:21 -08:00
|
|
|
filteredHandler.ServeHTTP(w, r)
|
|
|
|
}
|
2017-10-14 05:23:42 -07:00
|
|
|
|
2019-12-31 08:19:37 -08:00
|
|
|
// innerHandler is used to create both the one unfiltered http.Handler to be
|
2018-11-08 07:26:21 -08:00
|
|
|
// wrapped by the outer handler and also the filtered handlers created on the
|
|
|
|
// fly. The former is accomplished by calling innerHandler without any arguments
|
|
|
|
// (in which case it will log all the collectors enabled via command-line
|
|
|
|
// flags).
|
|
|
|
func (h *handler) innerHandler(filters ...string) (http.Handler, error) {
|
2019-12-31 08:19:37 -08:00
|
|
|
nc, err := collector.NewNodeCollector(h.logger, filters...)
|
2017-10-14 05:23:42 -07:00
|
|
|
if err != nil {
|
2018-11-08 07:26:21 -08:00
|
|
|
return nil, fmt.Errorf("couldn't create collector: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only log the creation of an unfiltered handler, which should happen
|
|
|
|
// only once upon startup.
|
|
|
|
if len(filters) == 0 {
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Info(h.logger).Log("msg", "Enabled collectors")
|
2018-11-08 07:26:21 -08:00
|
|
|
collectors := []string{}
|
|
|
|
for n := range nc.Collectors {
|
|
|
|
collectors = append(collectors, n)
|
|
|
|
}
|
|
|
|
sort.Strings(collectors)
|
2019-12-31 08:19:37 -08:00
|
|
|
for _, c := range collectors {
|
|
|
|
level.Info(h.logger).Log("collector", c)
|
2018-11-08 07:26:21 -08:00
|
|
|
}
|
2017-10-14 05:23:42 -07:00
|
|
|
}
|
|
|
|
|
2018-11-08 07:26:21 -08:00
|
|
|
r := prometheus.NewRegistry()
|
|
|
|
r.MustRegister(version.NewCollector("node_exporter"))
|
|
|
|
if err := r.Register(nc); err != nil {
|
|
|
|
return nil, fmt.Errorf("couldn't register node collector: %s", err)
|
2017-10-14 05:23:42 -07:00
|
|
|
}
|
2018-11-08 07:26:21 -08:00
|
|
|
handler := promhttp.HandlerFor(
|
|
|
|
prometheus.Gatherers{h.exporterMetricsRegistry, r},
|
|
|
|
promhttp.HandlerOpts{
|
2020-11-14 02:53:51 -08:00
|
|
|
ErrorLog: stdlog.New(log.NewStdlibAdapter(level.Error(h.logger)), "", 0),
|
2018-11-20 09:11:40 -08:00
|
|
|
ErrorHandling: promhttp.ContinueOnError,
|
|
|
|
MaxRequestsInFlight: h.maxRequests,
|
2019-07-28 01:37:10 -07:00
|
|
|
Registry: h.exporterMetricsRegistry,
|
2018-11-08 07:26:21 -08:00
|
|
|
},
|
2018-02-19 06:44:59 -08:00
|
|
|
)
|
2018-11-08 07:26:21 -08:00
|
|
|
if h.includeExporterMetrics {
|
|
|
|
// Note that we have to use h.exporterMetricsRegistry here to
|
|
|
|
// use the same promhttp metrics for all expositions.
|
|
|
|
handler = promhttp.InstrumentMetricHandler(
|
|
|
|
h.exporterMetricsRegistry, handler,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return handler, nil
|
2017-10-14 05:23:42 -07:00
|
|
|
}
|
|
|
|
|
2013-05-07 07:40:10 -07:00
|
|
|
func main() {
|
2016-02-04 17:24:16 -08:00
|
|
|
var (
|
2018-11-08 07:26:21 -08:00
|
|
|
metricsPath = kingpin.Flag(
|
|
|
|
"web.telemetry-path",
|
|
|
|
"Path under which to expose metrics.",
|
|
|
|
).Default("/metrics").String()
|
|
|
|
disableExporterMetrics = kingpin.Flag(
|
|
|
|
"web.disable-exporter-metrics",
|
|
|
|
"Exclude metrics about the exporter itself (promhttp_*, process_*, go_*).",
|
|
|
|
).Bool()
|
2018-11-20 09:11:40 -08:00
|
|
|
maxRequests = kingpin.Flag(
|
|
|
|
"web.max-requests",
|
|
|
|
"Maximum number of parallel scrape requests. Use 0 to disable.",
|
|
|
|
).Default("40").Int()
|
2020-02-20 02:03:33 -08:00
|
|
|
disableDefaultCollectors = kingpin.Flag(
|
|
|
|
"collector.disable-defaults",
|
|
|
|
"Set all collectors to disabled by default.",
|
|
|
|
).Default("false").Bool()
|
2022-10-23 03:45:29 -07:00
|
|
|
toolkitFlags = kingpinflag.AddFlags(kingpin.CommandLine, ":9100")
|
2016-02-04 17:24:16 -08:00
|
|
|
)
|
2015-04-15 20:51:09 -07:00
|
|
|
|
2019-12-31 08:19:37 -08:00
|
|
|
promlogConfig := &promlog.Config{}
|
|
|
|
flag.AddFlags(kingpin.CommandLine, promlogConfig)
|
2017-08-12 06:07:24 -07:00
|
|
|
kingpin.Version(version.Print("node_exporter"))
|
2021-05-11 07:19:34 -07:00
|
|
|
kingpin.CommandLine.UsageWriter(os.Stdout)
|
2017-08-12 06:07:24 -07:00
|
|
|
kingpin.HelpFlag.Short('h')
|
|
|
|
kingpin.Parse()
|
2019-12-31 08:19:37 -08:00
|
|
|
logger := promlog.New(promlogConfig)
|
2016-04-30 10:58:17 -07:00
|
|
|
|
2020-02-20 02:03:33 -08:00
|
|
|
if *disableDefaultCollectors {
|
|
|
|
collector.DisableDefaultCollectors()
|
|
|
|
}
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Info(logger).Log("msg", "Starting node_exporter", "version", version.Info())
|
|
|
|
level.Info(logger).Log("msg", "Build context", "build_context", version.BuildContext())
|
2021-01-22 14:53:56 -08:00
|
|
|
if user, err := user.Current(); err == nil && user.Uid == "0" {
|
2022-09-02 01:49:47 -07:00
|
|
|
level.Warn(logger).Log("msg", "Node Exporter is running as root user. This exporter is designed to run as unprivileged user, root is not required.")
|
2021-01-22 14:53:56 -08:00
|
|
|
}
|
2016-04-30 10:58:17 -07:00
|
|
|
|
2019-12-31 08:19:37 -08:00
|
|
|
http.Handle(*metricsPath, newHandler(!*disableExporterMetrics, *maxRequests, logger))
|
2015-03-05 08:02:17 -08:00
|
|
|
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Write([]byte(`<html>
|
|
|
|
<head><title>Node Exporter</title></head>
|
|
|
|
<body>
|
|
|
|
<h1>Node Exporter</h1>
|
|
|
|
<p><a href="` + *metricsPath + `">Metrics</a></p>
|
|
|
|
</body>
|
|
|
|
</html>`))
|
|
|
|
})
|
2015-04-15 20:51:09 -07:00
|
|
|
|
2022-10-23 03:45:29 -07:00
|
|
|
server := &http.Server{}
|
|
|
|
if err := web.ListenAndServe(server, toolkitFlags, logger); err != nil {
|
2019-12-31 08:19:37 -08:00
|
|
|
level.Error(logger).Log("err", err)
|
|
|
|
os.Exit(1)
|
2015-03-05 08:02:17 -08:00
|
|
|
}
|
2014-02-18 03:35:11 -08:00
|
|
|
}
|