diff --git a/main.go b/main.go index e3eb135..8d3955b 100644 --- a/main.go +++ b/main.go @@ -50,6 +50,17 @@ func printVersion() { func startServer() { log.Infof("Starting bird exporter (Version: %s)\n", version) + http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(` + Bird Routing Daemon Exporter (Version ` + version + `) + +

Bird Routing Daemon Exporter

+

Metrics

+

More information:

+

github.com/czerwonk/bird_exporter

+ + `)) + }) http.HandleFunc(*metricsPath, errorHandler(handleMetricsRequest)) log.Infof("Listening for %s on %s\n", *metricsPath, *listenAddress)