forked from ClickHouse/clickhouse_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clickhouse_exporter.go
47 lines (40 loc) · 1.39 KB
/
clickhouse_exporter.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
package main
import (
"flag"
"net/http"
"net/url"
"os"
"github.com/f1yegor/clickhouse_exporter/exporter"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/log"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
var (
listeningAddress = flag.String("telemetry.address", ":9116", "Address on which to expose metrics.")
metricsEndpoint = flag.String("telemetry.endpoint", "/metrics", "Path under which to expose metrics.")
clickhouseScrapeURI = flag.String("scrape_uri", "http://localhost:8123/", "URI to clickhouse http endpoint")
insecure = flag.Bool("insecure", true, "Ignore server certificate if using https")
user = os.Getenv("CLICKHOUSE_USER")
password = os.Getenv("CLICKHOUSE_PASSWORD")
)
func main() {
flag.Parse()
uri, err := url.Parse(*clickhouseScrapeURI)
if err != nil {
log.Fatal(err)
}
e := exporter.NewExporter(*uri, *insecure, user, password)
prometheus.MustRegister(e)
log.Printf("Starting Server: %s", *listeningAddress)
http.Handle(*metricsEndpoint, promhttp.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`<html>
<head><title>Clickhouse Exporter</title></head>
<body>
<h1>Clickhouse Exporter</h1>
<p><a href="` + *metricsEndpoint + `">Metrics</a></p>
</body>
</html>`))
})
log.Fatal(http.ListenAndServe(*listeningAddress, nil))
}