diff --git a/main.go b/main.go index c56c397..02f71c2 100644 --- a/main.go +++ b/main.go @@ -34,6 +34,15 @@ var ( func serveHTTP() { http.Handle(*metricsEndpoint, prometheus.Handler()) + http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(` + StatsD Bridge + +

StatsD Bridge

+

Metrics

+ + `)) + }) http.ListenAndServe(*listenAddress, nil) }