Add simple home page to node exporter.

This commit is contained in:
Brian Brazil 2015-01-09 12:52:08 +00:00
parent 6d7e08e78b
commit b50da59ee6

View file

@ -172,6 +172,15 @@ func main() {
}
go func() {
http.Handle("/metrics", handler)
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="/metrics">Metrics</a></p>
</body>
</html>`))
})
err := http.ListenAndServe(*listeningAddress, nil)
if err != nil {
glog.Fatal(err)