File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -34,16 +34,25 @@ func main() {
34
34
<head><title>Speedtest Exporter</title></head>
35
35
<body>
36
36
<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>
38
38
<p><a href='` + metricsPath + `'>Metrics</a></p>
39
39
<p><a href='/health'>Health</a></p>
40
40
</body>
41
41
</html>` ))
42
42
})
43
43
44
44
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
+ }
47
56
})
48
57
49
58
http .Handle (metricsPath , promhttp .HandlerFor (r , promhttp.HandlerOpts {
You can’t perform that action at this time.
0 commit comments