From 237f4e928a6fbcd70408610723dc8d2413e084e3 Mon Sep 17 00:00:00 2001 From: Daniel Czerwonk Date: Sat, 17 Jun 2017 09:40:20 +0200 Subject: [PATCH] added landing page --- main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) 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)