-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgithub-project-exporter.go
457 lines (379 loc) · 10.5 KB
/
github-project-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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package main
import (
"context"
"errors"
"fmt"
"net/http"
"os"
"strconv"
"strings"
"time"
"github.com/google/go-github/v28/github"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/log"
"github.com/spf13/cobra"
"golang.org/x/oauth2"
)
var (
VERSION string = "latest"
COMMIT string = "HEAD"
)
const (
NAMESPACE = "github"
)
var (
descOrgProjects = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "organization_projects"),
"How many projects are in the organization.",
[]string{"organization"},
nil,
)
descOrgProjectColumns = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "organization_project_columns"),
"How many columns are in the organization project.",
[]string{"organization", "project"},
nil,
)
descOrgProjectCards = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "organization_project_cards"),
"How many cards are in the organization project.",
[]string{"organization", "project", "column"},
nil,
)
descRepoProjects = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "repository_projects"),
"How many projects are in the repository.",
[]string{"repository"},
nil,
)
descRepoProjectColumns = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "repository_project_columns"),
"How many columns are in the repository project.",
[]string{"repository", "project"},
nil,
)
descRepoProjectCards = prometheus.NewDesc(
prometheus.BuildFQName(NAMESPACE, "", "repository_project_cards"),
"How many cards are in the repository project.",
[]string{"repository", "project", "column"},
nil,
)
)
type cache struct {
expires time.Time
orgProjects map[string][]*github.Project
repoProjects map[string][]*github.Project
projectColumns map[int64][]*github.ProjectColumn
projectCards map[int64][]*github.ProjectCard
}
func newCache(ttl int) *cache {
return &cache{
expires: time.Now().Add(time.Duration(ttl) * time.Second),
orgProjects: map[string][]*github.Project{},
repoProjects: map[string][]*github.Project{},
projectColumns: map[int64][]*github.ProjectColumn{},
projectCards: map[int64][]*github.ProjectCard{},
}
}
type Exporter struct {
client *github.Client
orgs []string
repos []string
ttl int
cache *cache
}
func NewExporter(token string, orgs []string, repos []string, ttl int) (*Exporter, error) {
if token == "" {
return nil, errors.New("invalid token")
}
if len(orgs) == 0 && len(repos) == 0 {
return nil, errors.New("at least one organization name or repository name is required")
}
if len(repos) > 0 {
for _, repo := range repos {
r := strings.Split(repo, "/")
if len(r) != 2 || (r[0] == "" || r[1] == "") {
return nil, fmt.Errorf("invalid repository name: %s", repo)
}
}
}
if ttl < 0 {
return nil, errors.New("invalid TTL")
}
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)
hc := oauth2.NewClient(context.Background(), ts)
client := github.NewClient(hc)
return &Exporter{
client: client,
orgs: orgs,
repos: repos,
ttl: ttl,
}, nil
}
func (e *Exporter) Describe(ch chan<- *prometheus.Desc) {
ch <- descOrgProjects
ch <- descOrgProjectColumns
ch <- descOrgProjectCards
ch <- descRepoProjects
ch <- descRepoProjectColumns
ch <- descRepoProjectCards
}
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
var err error
if e.cache == nil || e.cache.expires.Before(time.Now()) {
e.cache = newCache(e.ttl)
log.Debugln("Reset cache")
}
for _, org := range e.orgs {
projects, ok := e.cache.orgProjects[org]
if !ok {
projects, err = e.getOrganizationProjects(org)
if err != nil {
log.Errorln(err)
continue
}
e.cache.orgProjects[org] = projects
}
ch <- prometheus.MustNewConstMetric(
descOrgProjects, prometheus.GaugeValue, float64(len(projects)), org,
)
for _, project := range projects {
columns, ok := e.cache.projectColumns[*project.ID]
if !ok {
columns, err = e.getProjectColumns(*project.ID)
if err != nil {
log.Errorln(err)
continue
}
e.cache.projectColumns[*project.ID] = columns
}
ch <- prometheus.MustNewConstMetric(
descOrgProjectColumns, prometheus.GaugeValue, float64(len(columns)), org, strconv.Itoa(*project.Number),
)
for _, column := range columns {
cards, ok := e.cache.projectCards[*column.ID]
if !ok {
cards, err = e.getProjectCards(*column.ID)
if err != nil {
log.Errorln(err)
continue
}
e.cache.projectCards[*column.ID] = cards
}
ch <- prometheus.MustNewConstMetric(
descOrgProjectCards, prometheus.GaugeValue, float64(len(cards)), org, strconv.Itoa(*project.Number), *column.Name,
)
}
}
}
for _, repo := range e.repos {
var err error
projects, ok := e.cache.repoProjects[repo]
if !ok {
projects, err = e.getRepositoryProjects(repo)
if err != nil {
log.Errorln(err)
continue
}
e.cache.repoProjects[repo] = projects
}
ch <- prometheus.MustNewConstMetric(
descRepoProjects, prometheus.GaugeValue, float64(len(projects)), repo,
)
for _, project := range projects {
columns, ok := e.cache.projectColumns[*project.ID]
if !ok {
columns, err = e.getProjectColumns(*project.ID)
if err != nil {
log.Errorln(err)
continue
}
e.cache.projectColumns[*project.ID] = columns
}
ch <- prometheus.MustNewConstMetric(
descRepoProjectColumns, prometheus.GaugeValue, float64(len(columns)), repo, strconv.Itoa(*project.Number),
)
for _, column := range columns {
cards, ok := e.cache.projectCards[*column.ID]
if !ok {
cards, err = e.getProjectCards(*column.ID)
if err != nil {
log.Errorln(err)
continue
}
e.cache.projectCards[*column.ID] = cards
}
ch <- prometheus.MustNewConstMetric(
descRepoProjectCards, prometheus.GaugeValue, float64(len(cards)), repo, strconv.Itoa(*project.Number), *column.Name,
)
}
}
}
}
func (e *Exporter) getOrganizationProjects(org string) ([]*github.Project, error) {
var projects []*github.Project
if org == "" {
return nil, fmt.Errorf("invalid organization name: %s", org)
}
opts := &github.ProjectListOptions{
State: "open",
ListOptions: github.ListOptions{
Page: 1,
PerPage: 100,
},
}
for {
pjs, res, err := e.client.Organizations.ListProjects(context.Background(), org, opts)
if err != nil {
return nil, fmt.Errorf("unable to get organization projects: %s", org)
}
projects = append(projects, pjs...)
if res.NextPage == 0 {
break
}
opts.Page = res.NextPage
}
return projects, nil
}
func (e *Exporter) getRepositoryProjects(repo string) ([]*github.Project, error) {
var projects []*github.Project
r := strings.Split(repo, "/")
if len(r) != 2 {
return nil, fmt.Errorf("invalid repository name: %s", repo)
}
opts := &github.ProjectListOptions{
State: "open",
ListOptions: github.ListOptions{
Page: 1,
PerPage: 100,
},
}
for {
pjs, res, err := e.client.Repositories.ListProjects(context.Background(), r[0], r[1], opts)
if err != nil {
return nil, fmt.Errorf("unable to get repository projects: %s/%s", r[0], r[1])
}
projects = append(projects, pjs...)
if res.NextPage == 0 {
break
}
opts.Page = res.NextPage
}
return projects, nil
}
func (e *Exporter) getProjectColumns(projectID int64) ([]*github.ProjectColumn, error) {
var columns []*github.ProjectColumn
opts := &github.ListOptions{
Page: 1,
PerPage: 100,
}
for {
cols, res, err := e.client.Projects.ListProjectColumns(context.Background(), projectID, opts)
if err != nil {
return nil, fmt.Errorf("unable to get project columns: %d", projectID)
}
columns = append(columns, cols...)
if res.NextPage == 0 {
break
}
opts.Page = res.NextPage
}
return columns, nil
}
func (e *Exporter) getProjectCards(columnID int64) ([]*github.ProjectCard, error) {
var cards []*github.ProjectCard
opts := &github.ProjectCardListOptions{
ListOptions: github.ListOptions{
Page: 1,
PerPage: 100,
},
}
for {
cas, res, err := e.client.Projects.ListProjectCards(context.Background(), columnID, opts)
if err != nil {
return nil, fmt.Errorf("unable to get project cards: %d", columnID)
}
cards = append(cards, cas...)
if res.NextPage == 0 {
break
}
opts.Page = res.NextPage
}
return cards, nil
}
func main() {
var cmd = &cobra.Command{
Use: "github-project-exporter",
Short: "Exporter for GitHub Project",
RunE: run,
}
cmd.Flags().String("github.token", "", "GitHub access token")
cmd.Flags().StringSlice("github.organization", []string{}, "Organization name")
cmd.Flags().StringSlice("github.repository", []string{}, "Repository name")
cmd.Flags().Int("github.cache-ttl", 60, "Cache TTL of GitHub API response (seconds)")
cmd.Flags().String("web.listen-address", "0.0.0.0:9410", "Address to listen on for web interface and telemetry")
cmd.Flags().String("web.telemetry-path", "/metrics", "Path under which to expose metrics")
cmd.Flags().Bool("version", false, "Display version information and exit")
cmd.SilenceUsage = true
cmd.SilenceErrors = true
err := cmd.Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error: %s\n", err)
os.Exit(1)
}
}
func run(cmd *cobra.Command, args []string) error {
v, err := cmd.Flags().GetBool("version")
if err != nil {
return err
}
if v {
version()
os.Exit(0)
}
listenAddress, err := cmd.Flags().GetString("web.listen-address")
if err != nil {
return err
}
telemetryPath, err := cmd.Flags().GetString("web.telemetry-path")
if err != nil {
return err
}
token, err := cmd.Flags().GetString("github.token")
if err != nil {
return err
}
orgs, err := cmd.Flags().GetStringSlice("github.organization")
if err != nil {
return err
}
repos, err := cmd.Flags().GetStringSlice("github.repository")
if err != nil {
return err
}
ttl, err := cmd.Flags().GetInt("github.cache-ttl")
if err != nil {
return err
}
exporter, err := NewExporter(token, orgs, repos, ttl)
if err != nil {
return err
}
prometheus.MustRegister(exporter)
http.Handle(telemetryPath, prometheus.Handler())
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte(`<html><head>
<title>GitHub Project Exporter</title></head><body>
<h1>GitHub Project Exporter</h1>
<p><a href="` + telemetryPath + `">Metrics</a></p>
</body></html>`))
})
log.Infoln("Listening on", listenAddress)
log.Fatal(http.ListenAndServe(listenAddress, nil))
return nil
}
func version() {
fmt.Printf("Version: %s (%s)\n", VERSION, COMMIT)
}