Add Content-Type to HTTP landing page.

Closes #154
This commit is contained in:
Will Rouesnel 2018-02-19 23:17:42 +11:00
parent 2148f3518f
commit 946aa5db45

View File

@ -1108,6 +1108,7 @@ func main() {
http.Handle(*metricPath, promhttp.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "Content-Type:text/plain; charset=UTF-8") // nolint: errcheck
w.Write(landingPage) // nolint: errcheck
})