-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
185 lines (150 loc) · 4.42 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package main
import (
"context"
_ "embed"
"errors"
"fmt"
"log"
"net/http"
"os"
"runtime"
"strings"
_ "github.com/KimMachineGun/automemlimit"
ghinstallation "github.com/bradleyfalzon/ghinstallation/v2"
github "github.com/google/go-github/v61/github"
flags "github.com/jessevdk/go-flags"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/webdevops/go-common/prometheus/collector"
"github.com/webdevops/github-workflow-exporter/config"
)
const (
Author = "webdevops.io"
UserAgent = "github-workflow-exporter/"
)
var (
argparser *flags.Parser
Opts config.Opts
githubClient *github.Client
// Git version information
gitCommit = "<unknown>"
gitTag = "<unknown>"
// cache config
cacheTag = "v1"
)
type Portrange struct {
FirstPort int
LastPort int
}
func main() {
initArgparser()
defer initLogger().Sync() // nolint:errcheck
logger.Infof("starting github-workflows-exporter v%s (%s; %s; by %v)", gitTag, gitCommit, runtime.Version(), Author)
logger.Info(string(Opts.GetJson()))
initSystem()
logger.Infof("init GitHub connection")
initGitHubConnection()
logger.Infof("starting metrics collection")
initMetricCollector()
logger.Infof("starting http server on %s", Opts.Server.Bind)
startHttpServer()
}
func initArgparser() {
argparser = flags.NewParser(&Opts, flags.Default)
_, err := argparser.Parse()
// check if there is an parse error
if err != nil {
var flagsErr *flags.Error
if ok := errors.As(err, &flagsErr); ok && flagsErr.Type == flags.ErrHelp {
os.Exit(0)
} else {
fmt.Println()
argparser.WriteHelp(os.Stdout)
os.Exit(1)
}
}
}
func initGitHubConnection() {
var err error
httpClient := &http.Client{}
if Opts.GitHub.Auth.Token != "" {
// token auth
logger.Info(`using GitHub token auth`)
githubClient = github.NewClient(httpClient)
githubClient = githubClient.WithAuthToken(Opts.GitHub.Auth.Token)
} else if Opts.GitHub.Auth.AppID != nil {
// app auth with private key
logger.Infof(`using GitHub app auth (appID: %v, installationID: %v) with private key`, *Opts.GitHub.Auth.AppID, *Opts.GitHub.Auth.AppInstallationID)
if Opts.GitHub.Auth.AppPrivateKeyFile == nil {
logger.Fatal(`GitHub app private key file not specified`)
}
itr, err := ghinstallation.NewKeyFromFile(http.DefaultTransport, *Opts.GitHub.Auth.AppID, *Opts.GitHub.Auth.AppInstallationID, *Opts.GitHub.Auth.AppPrivateKeyFile)
if err != nil {
log.Fatalf(`failed to init GitHub app auth: %v`, err)
}
// adapt enterprise url
if Opts.GitHub.EnterpriseURL != "" {
itr.BaseURL = Opts.GitHub.EnterpriseURL
if !strings.HasSuffix(itr.BaseURL, "/") {
itr.BaseURL += "/"
}
if !strings.HasSuffix(itr.BaseURL, "/api/v3/") {
itr.BaseURL += "api/v3/"
}
}
httpClient.Transport = itr
githubClient = github.NewClient(httpClient)
} else {
// no auth, failing
logger.Fatal(`no GitHub auth specified, either use token or app based auth`)
}
githubClient.UserAgent = fmt.Sprintf(`%s/%s`, UserAgent, gitTag)
if Opts.GitHub.EnterpriseURL != "" {
githubClient, err = githubClient.WithEnterpriseURLs(Opts.GitHub.EnterpriseURL, "")
if err != nil {
log.Fatal(err)
}
}
ctx := context.Background()
// test connection
logger.Info(`testing GitHub connection`)
_, _, err = githubClient.Organizations.Get(ctx, Opts.GitHub.Organization)
if err != nil {
log.Fatalf(`unable to fetch GitHub org "%v": %v`, Opts.GitHub.Organization, err)
}
}
func initMetricCollector() {
collectorName := "workflows"
c := collector.New(collectorName, &MetricsCollectorGithubWorkflows{}, logger)
c.SetScapeTime(Opts.Scrape.Time)
c.SetCache(
Opts.GetCachePath(collectorName+".json"),
collector.BuildCacheTag(cacheTag, Opts.GitHub),
)
if err := c.Start(); err != nil {
logger.Fatal(err.Error())
}
}
// start and handle prometheus handler
func startHttpServer() {
mux := http.NewServeMux()
// healthz
mux.HandleFunc("/healthz", func(w http.ResponseWriter, r *http.Request) {
if _, err := fmt.Fprint(w, "Ok"); err != nil {
logger.Error(err)
}
})
// readyz
mux.HandleFunc("/readyz", func(w http.ResponseWriter, r *http.Request) {
if _, err := fmt.Fprint(w, "Ok"); err != nil {
logger.Error(err)
}
})
mux.Handle("/metrics", collector.HttpWaitForRlock(promhttp.Handler()))
srv := &http.Server{
Addr: Opts.Server.Bind,
Handler: mux,
ReadTimeout: Opts.Server.ReadTimeout,
WriteTimeout: Opts.Server.WriteTimeout,
}
logger.Fatal(srv.ListenAndServe())
}