Skip to content

Commit 313fe15

Browse files
committed
Health check endpoint checks for internet connectivity
1 parent 07a6f2a commit 313fe15

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

cmd/speedtest_exporter/main.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,25 @@ func main() {
3434
<head><title>Speedtest Exporter</title></head>
3535
<body>
3636
<h1>Speedtest Exporter</h1>
37-
<p>Metrics page will take approx 30 seconds to load and show results, as the exporter carries out a speedtest when scraped.</p>
37+
<p>Metrics page will take approx 40 seconds to load and show results, as the exporter carries out a speedtest when scraped.</p>
3838
<p><a href='` + metricsPath + `'>Metrics</a></p>
3939
<p><a href='/health'>Health</a></p>
4040
</body>
4141
</html>`))
4242
})
4343

4444
http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
45-
w.WriteHeader(http.StatusOK)
46-
_, _ = fmt.Fprint(w, "OK")
45+
client := http.Client{
46+
Timeout: 3 * time.Second,
47+
}
48+
_, err := client.Get("https://clients3.google.com/generate_204")
49+
if err != nil {
50+
w.WriteHeader(http.StatusInternalServerError)
51+
_, _ = fmt.Fprint(w, "No Internet Connection")
52+
} else {
53+
w.WriteHeader(http.StatusOK)
54+
_, _ = fmt.Fprint(w, "OK")
55+
}
4756
})
4857

4958
http.Handle(metricsPath, promhttp.HandlerFor(r, promhttp.HandlerOpts{

0 commit comments

Comments
 (0)