-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.go
138 lines (107 loc) · 3.05 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package main
import (
"context"
"encoding/json"
"io"
"log"
"net/http"
"os"
"os/signal"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
)
// TOKEN для Selectel API
var TOKEN string
type selectelBillingResponse struct {
Data struct {
Billings []struct {
FinalSum int `json:"final_sum"`
DebtSum int `json:"debt_sum"`
} `json:"billings"`
} `json:"data"`
}
func main() {
log.Println("Selectel Billing Exporter запущен")
log.Println("Устанавливаем Selectel токен...")
ok := false
TOKEN, ok = os.LookupEnv("TOKEN")
if !ok {
log.Fatal("Переменная окружения TOKEN, которая должна содержать Selectel API ключ не установлена")
}
log.Println("Токен успешно установлен!")
http.Handle("/metrics", promhttp.Handler())
go recordMetrics()
srv := &http.Server{
Addr: "0.0.0.0:80",
WriteTimeout: time.Second * 15,
ReadTimeout: time.Second * 15,
IdleTimeout: time.Second * 60,
Handler: nil,
}
go func() {
log.Fatal(srv.ListenAndServe())
}()
log.Println("Экспортер готов принимать запросы от Prometheus на /metrics")
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
log.Println("Изящно завершаем работу экспортера...")
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
err := srv.Shutdown(ctx)
if err != nil {
log.Fatal(err)
}
os.Exit(0)
}
func initGauges() map[string]prometheus.Gauge {
promGauges := make(map[string]prometheus.Gauge)
promGauges["selectel_billing_final_sum"] = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "selectel_billing_final_sum",
Help: "selectel billing final sum",
})
promGauges["selectel_billing_debt_sum"] = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "selectel_billing_debt_sum",
Help: "selectel billing debt sum",
})
for _, v := range promGauges {
prometheus.MustRegister(v)
}
return promGauges
}
func recordMetrics() {
gauge := initGauges()
for {
s := selectelBillingResponse{}
// делаем запрос к Selectel API
if err := getSelectelBilling(&s); err != nil {
log.Printf("Не удалось получить ответ от Selectel API! Ошибка: %v\n", err)
continue
}
// записываем метрики
gauge["selectel_billing_final_sum"].Set(float64(s.Data.Billings[0].FinalSum))
gauge["selectel_billing_debt_sum"].Set(float64(s.Data.Billings[0].DebtSum))
time.Sleep(time.Hour * 1)
}
}
func getSelectelBilling(selectelMetrics *selectelBillingResponse) error {
client := &http.Client{}
req, err := http.NewRequest("GET", "https://api.selectel.ru/v3/balances", nil)
if err != nil {
return err
}
req.Header.Add("X-Token", TOKEN)
resp, err := client.Do(req)
if err != nil {
return err
}
temp, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
if err := json.Unmarshal(temp, &selectelMetrics); err != nil {
return err
}
return nil
}