-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocument.go
47 lines (35 loc) · 1.01 KB
/
document.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
package main
import (
"context"
"github.com/hansmi/paperhooks/pkg/client"
"github.com/prometheus/client_golang/prometheus"
)
type documentClient interface {
ListDocuments(context.Context, client.ListDocumentsOptions) ([]client.Document, *client.Response, error)
}
type documentCollector struct {
cl documentClient
countDesc *prometheus.Desc
}
func newDocumentCollector(cl documentClient) *documentCollector {
return &documentCollector{
cl: cl,
countDesc: prometheus.NewDesc("paperless_documents",
"Number of documents.",
nil, nil),
}
}
func (c *documentCollector) describe(ch chan<- *prometheus.Desc) {
ch <- c.countDesc
}
func (c *documentCollector) collect(ctx context.Context, ch chan<- prometheus.Metric) error {
_, response, err := c.cl.ListDocuments(ctx, client.ListDocumentsOptions{})
if err != nil {
return err
}
if response.ItemCount != client.ItemCountUnknown {
ch <- prometheus.MustNewConstMetric(c.countDesc, prometheus.GaugeValue,
float64(response.ItemCount))
}
return nil
}