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 (
|
2014-02-18 03:35:11 -08:00
|
|
|
"net/http"
|
2015-03-05 08:02:17 -08:00
|
|
|
_ "net/http/pprof"
|
2014-02-07 08:09:39 -08:00
|
|
|
|
2014-02-18 03:35:11 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2017-01-05 10:30:48 -08:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
2015-10-30 13:20:06 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2016-04-30 10:58:17 -07:00
|
|
|
"github.com/prometheus/common/version"
|
2014-02-18 03:35:11 -08:00
|
|
|
"github.com/prometheus/node_exporter/collector"
|
2017-08-12 06:07:24 -07:00
|
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
2013-05-07 07:40:10 -07:00
|
|
|
)
|
|
|
|
|
2016-04-30 10:58:17 -07:00
|
|
|
func init() {
|
|
|
|
prometheus.MustRegister(version.NewCollector("node_exporter"))
|
|
|
|
}
|
|
|
|
|
2013-05-07 07:40:10 -07:00
|
|
|
func main() {
|
2016-02-04 17:24:16 -08:00
|
|
|
var (
|
2017-09-28 06:06:26 -07:00
|
|
|
listenAddress = kingpin.Flag("web.listen-address", "Address on which to expose metrics and web interface.").Default(":9100").String()
|
|
|
|
metricsPath = kingpin.Flag("web.telemetry-path", "Path under which to expose metrics.").Default("/metrics").String()
|
2016-02-04 17:24:16 -08:00
|
|
|
)
|
2015-04-15 20:51:09 -07:00
|
|
|
|
2017-08-12 06:07:24 -07:00
|
|
|
log.AddFlags(kingpin.CommandLine)
|
|
|
|
kingpin.Version(version.Print("node_exporter"))
|
|
|
|
kingpin.HelpFlag.Short('h')
|
|
|
|
kingpin.Parse()
|
2016-04-30 10:58:17 -07:00
|
|
|
|
|
|
|
log.Infoln("Starting node_exporter", version.Info())
|
|
|
|
log.Infoln("Build context", version.BuildContext())
|
|
|
|
|
2017-09-28 06:06:26 -07:00
|
|
|
nc, err := collector.NewNodeCollector()
|
2013-05-07 07:40:10 -07:00
|
|
|
if err != nil {
|
2017-09-28 06:06:26 -07:00
|
|
|
log.Fatalf("Couldn't create collector: %s", err)
|
2013-05-07 07:40:10 -07:00
|
|
|
}
|
2015-05-28 12:21:44 -07:00
|
|
|
log.Infof("Enabled collectors:")
|
2017-09-28 06:06:26 -07:00
|
|
|
for n := range nc.Collectors {
|
2015-05-28 12:21:44 -07:00
|
|
|
log.Infof(" - %s", n)
|
2014-02-07 08:09:39 -08:00
|
|
|
}
|
2014-02-18 03:35:11 -08:00
|
|
|
|
2017-09-28 06:06:26 -07:00
|
|
|
if err := prometheus.Register(nc); err != nil {
|
2017-03-13 19:55:19 -07:00
|
|
|
log.Fatalf("Couldn't register collector: %s", err)
|
|
|
|
}
|
2017-01-05 10:30:48 -08:00
|
|
|
handler := promhttp.HandlerFor(prometheus.DefaultGatherer,
|
2017-03-13 19:55:19 -07:00
|
|
|
promhttp.HandlerOpts{
|
|
|
|
ErrorLog: log.NewErrorLogger(),
|
|
|
|
ErrorHandling: promhttp.ContinueOnError,
|
|
|
|
})
|
2014-10-29 07:16:43 -07:00
|
|
|
|
2017-03-13 19:55:19 -07:00
|
|
|
// TODO(ts): Remove deprecated and problematic InstrumentHandler usage.
|
2017-01-05 10:30:48 -08:00
|
|
|
http.Handle(*metricsPath, prometheus.InstrumentHandler("prometheus", handler))
|
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
|
|
|
|
2016-04-30 10:58:17 -07:00
|
|
|
log.Infoln("Listening on", *listenAddress)
|
2015-03-05 08:02:17 -08:00
|
|
|
err = http.ListenAndServe(*listenAddress, nil)
|
|
|
|
if err != nil {
|
2015-05-28 12:21:44 -07:00
|
|
|
log.Fatal(err)
|
2015-03-05 08:02:17 -08:00
|
|
|
}
|
2014-02-18 03:35:11 -08:00
|
|
|
}
|