forked from kaz/conoha_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
75 lines (64 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package main
import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"gopkg.in/yaml.v2"
"io/ioutil"
"log"
"net/http"
)
type Config struct {
Port string `yaml:"port"`
Region string `yaml:"region"`
TenantId string `yaml:"tenant_id"`
Username string `yaml:"username"`
Password string `yaml:"password"`
}
// インデックスページ用 (Prometheusは別にココを触らないので、お好みで……)
func indexPage(w http.ResponseWriter, _ *http.Request) {
_, _ = w.Write([]byte(`
<!DOCTYPE html>
<html>
<head>
<title>ConoHa Exporter</title>
</head>
<body>
<h1>ConoHa Exporter</h1>
<p><a href="/metrics">Metrics</a></p>
</body>
</html>
`))
}
func main() {
log.Println("ConoHa exporter started.")
// config.ymlを読み取る
buf, err := ioutil.ReadFile("./conoha_exporter_config.yaml")
if err != nil {
log.Fatal(err)
return
}
var config Config
if err := yaml.Unmarshal(buf, &config); err != nil {
log.Fatal(err)
}
// ConoHa APIクライアントを作成
client, err := NewClient(config.Region, config.TenantId, config.Username, config.Password)
if err != nil {
log.Fatal(err)
}
// 実装したCollectorのを作成
exporter, err := NewConohaCollector(client)
if err != nil {
log.Fatal(err)
}
// Collectorをprometheusライブラリに登録
if err := prometheus.Register(exporter); err != nil {
log.Fatal(err)
}
// 定期的にメトリクスを更新する
go exporter.AutoUpdate()
// HTTPでメトリクスを出力
http.HandleFunc("/", indexPage)
http.Handle("/metrics", promhttp.Handler())
log.Fatal(http.ListenAndServe(":"+config.Port, nil))
}