-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
55 lines (46 loc) · 1.6 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"flag"
"log"
"net/http"
"runtime"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
var (
// GitCommit is the git commit value and is expected to be set during build
GitCommit string
// GoVersion is the Golang runtime version
GoVersion = runtime.Version()
// OSVersion is the OS version (uname --kernel-release) and is expected to be set during build
OSVersion string
// StartTime is the start time of the exporter represented as a UNIX epoch
StartTime = time.Now().Unix()
)
var (
endpoint = flag.String("endpoint", ":9989", "The endpoint of the HTTP server")
metricsPath = flag.String("path", "/metrics", "The path on which Prometheus metrics will be served")
)
func handleHealthz(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
}
func main() {
flag.Parse()
if GitCommit == "" {
log.Println("[main] GitCommit value unchanged: expected to be set during build")
}
if OSVersion == "" {
log.Println("[main] OSVersion value unchanged: expected to be set during build")
}
registry := prometheus.NewRegistry()
registry.MustRegister(NewExporterCollector(OSVersion, GoVersion, GitCommit, StartTime))
registry.MustRegister(NewStatusCollector())
mux := http.NewServeMux()
mux.Handle("/healthz", http.HandlerFunc(handleHealthz))
mux.Handle(*metricsPath, promhttp.HandlerFor(registry, promhttp.HandlerOpts{}))
log.Printf("[main] Server starting (%s)", *endpoint)
log.Printf("[main] metrics served on: %s", *metricsPath)
log.Fatal(http.ListenAndServe(*endpoint, mux))
}