-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
prometheus.go
93 lines (79 loc) · 2.38 KB
/
prometheus.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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package prometheusexporter // import "github.com/open-telemetry/opentelemetry-collector-contrib/exporter/prometheusexporter"
import (
"context"
"errors"
"net/http"
"strings"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/exporter"
"go.opentelemetry.io/collector/pdata/pmetric"
)
type prometheusExporter struct {
config Config
name string
endpoint string
shutdownFunc func() error
handler http.Handler
collector *collector
registry *prometheus.Registry
settings component.TelemetrySettings
}
var errBlankPrometheusAddress = errors.New("expecting a non-blank address to run the Prometheus metrics handler")
func newPrometheusExporter(config *Config, set exporter.Settings) (*prometheusExporter, error) {
addr := strings.TrimSpace(config.Endpoint)
if strings.TrimSpace(config.Endpoint) == "" {
return nil, errBlankPrometheusAddress
}
collector := newCollector(config, set.Logger)
registry := prometheus.NewRegistry()
_ = registry.Register(collector)
return &prometheusExporter{
config: *config,
name: set.ID.String(),
endpoint: addr,
collector: collector,
registry: registry,
shutdownFunc: func() error { return nil },
handler: promhttp.HandlerFor(
registry,
promhttp.HandlerOpts{
ErrorHandling: promhttp.ContinueOnError,
ErrorLog: newPromLogger(set.Logger),
EnableOpenMetrics: config.EnableOpenMetrics,
},
),
settings: set.TelemetrySettings,
}, nil
}
func (pe *prometheusExporter) Start(ctx context.Context, host component.Host) error {
ln, err := pe.config.ToListener(ctx)
if err != nil {
return err
}
pe.shutdownFunc = ln.Close
mux := http.NewServeMux()
mux.Handle("/metrics", pe.handler)
srv, err := pe.config.ToServer(ctx, host, pe.settings, mux)
if err != nil {
return err
}
go func() {
_ = srv.Serve(ln)
}()
return nil
}
func (pe *prometheusExporter) ConsumeMetrics(_ context.Context, md pmetric.Metrics) error {
n := 0
rmetrics := md.ResourceMetrics()
for i := 0; i < rmetrics.Len(); i++ {
n += pe.collector.processMetrics(rmetrics.At(i))
}
return nil
}
func (pe *prometheusExporter) Shutdown(context.Context) error {
return pe.shutdownFunc()
}