-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstoragepath.go
59 lines (45 loc) · 1.49 KB
/
storagepath.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
package main
import (
"context"
"strconv"
"github.com/hansmi/paperhooks/pkg/client"
"github.com/prometheus/client_golang/prometheus"
)
type storagePathClient interface {
ListAllStoragePaths(context.Context, client.ListStoragePathsOptions, func(context.Context, client.StoragePath) error) error
}
type storagePathCollector struct {
cl storagePathClient
infoDesc *prometheus.Desc
docCountDesc *prometheus.Desc
}
func newStoragePathCollector(cl storagePathClient) *storagePathCollector {
return &storagePathCollector{
cl: cl,
infoDesc: prometheus.NewDesc("paperless_storage_path_info",
"Static information about a storage path.",
[]string{"id", "name", "slug"}, nil),
docCountDesc: prometheus.NewDesc("paperless_storage_path_document_count",
"Number of documents associated with a storage path.",
[]string{"id"}, nil),
}
}
func (c *storagePathCollector) describe(ch chan<- *prometheus.Desc) {
ch <- c.infoDesc
ch <- c.docCountDesc
}
func (c *storagePathCollector) collect(ctx context.Context, ch chan<- prometheus.Metric) error {
var opts client.ListStoragePathsOptions
opts.Ordering.Field = "name"
return c.cl.ListAllStoragePaths(ctx, opts, func(_ context.Context, sp client.StoragePath) error {
id := strconv.FormatInt(sp.ID, 10)
ch <- prometheus.MustNewConstMetric(c.infoDesc, prometheus.GaugeValue, 1,
id,
sp.Name,
sp.Slug,
)
ch <- prometheus.MustNewConstMetric(c.docCountDesc, prometheus.GaugeValue,
float64(sp.DocumentCount), id)
return nil
})
}