-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreen-button.go
58 lines (49 loc) · 1.09 KB
/
green-button.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
package main
import (
"crypto/tls"
"crypto/x509"
"fmt"
"time"
"github.com/spf13/viper"
)
type alectra struct {
UserID string
Password string
UrlAlectra string
InfluxAddress string
InfluxPass string
RootCAs string
}
var alectraConfig alectra
func main() {
viper.SetConfigName("config")
viper.SetConfigType("yaml")
viper.AddConfigPath("/etc/green-button/")
viper.AddConfigPath(".")
viper.AutomaticEnv()
viper.SetEnvPrefix("GREEN")
err := viper.ReadInConfig()
if err != nil {
panic(fmt.Errorf("fatal error config file: %w", err))
}
err = viper.UnmarshalKey("alectra", &alectraConfig)
if err != nil {
panic(fmt.Errorf("fatal error config file: %w", err))
}
pool := x509.NewCertPool()
if ok := pool.AppendCertsFromPEM([]byte(alectraConfig.RootCAs)); !ok {
panic(fmt.Errorf("fatal error loading root certificates"))
}
tlsConfig := &tls.Config{
RootCAs: pool,
}
for {
_, err = alectraScrape(tlsConfig)
if err != nil {
fmt.Printf("Alectra failed: %s", err)
}
sleep := 6 * time.Hour
fmt.Printf("Sleeping for %s\n", sleep)
time.Sleep(sleep)
}
}