-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
scrapercontroller.go
220 lines (186 loc) · 6.46 KB
/
scrapercontroller.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
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package scraperhelper // import "go.opentelemetry.io/collector/receiver/scraperhelper"
import (
"context"
"errors"
"time"
"go.uber.org/multierr"
"go.uber.org/zap"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/component/componenterror"
"go.opentelemetry.io/collector/config"
"go.opentelemetry.io/collector/consumer"
"go.opentelemetry.io/collector/model/pdata"
"go.opentelemetry.io/collector/obsreport"
"go.opentelemetry.io/collector/receiver/scrapererror"
)
// ScraperControllerSettings defines common settings for a scraper controller
// configuration. Scraper controller receivers can embed this struct, instead
// of config.ReceiverSettings, and extend it with more fields if needed.
type ScraperControllerSettings struct {
config.ReceiverSettings `mapstructure:",squash"` // squash ensures fields are correctly decoded in embedded struct
CollectionInterval time.Duration `mapstructure:"collection_interval"`
}
// Deprecated: [v0.46.0] use NewDefaultScraperControllerSettings instead.
var DefaultScraperControllerSettings = NewDefaultScraperControllerSettings
// NewDefaultScraperControllerSettings returns default scraper controller
// settings with a collection interval of one minute.
func NewDefaultScraperControllerSettings(cfgType config.Type) ScraperControllerSettings {
return ScraperControllerSettings{
ReceiverSettings: config.NewReceiverSettings(config.NewComponentID(cfgType)),
CollectionInterval: time.Minute,
}
}
// ScraperControllerOption apply changes to internal options.
type ScraperControllerOption func(*controller)
// AddScraper configures the provided scrape function to be called
// with the specified options, and at the specified collection interval.
//
// Observability information will be reported, and the scraped metrics
// will be passed to the next consumer.
func AddScraper(scraper Scraper) ScraperControllerOption {
return func(o *controller) {
o.scrapers = append(o.scrapers, scraper)
}
}
// WithTickerChannel allows you to override the scraper controllers ticker
// channel to specify when scrape is called. This is only expected to be
// used by tests.
func WithTickerChannel(tickerCh <-chan time.Time) ScraperControllerOption {
return func(o *controller) {
o.tickerCh = tickerCh
}
}
type controller struct {
id config.ComponentID
logger *zap.Logger
collectionInterval time.Duration
nextConsumer consumer.Metrics
scrapers []Scraper
tickerCh <-chan time.Time
initialized bool
done chan struct{}
terminated chan struct{}
obsrecv *obsreport.Receiver
recvSettings component.ReceiverCreateSettings
}
// NewScraperControllerReceiver creates a Receiver with the configured options, that can control multiple scrapers.
func NewScraperControllerReceiver(
cfg *ScraperControllerSettings,
set component.ReceiverCreateSettings,
nextConsumer consumer.Metrics,
options ...ScraperControllerOption,
) (component.Receiver, error) {
if nextConsumer == nil {
return nil, componenterror.ErrNilNextConsumer
}
if cfg.CollectionInterval <= 0 {
return nil, errors.New("collection_interval must be a positive duration")
}
sc := &controller{
id: cfg.ID(),
logger: set.Logger,
collectionInterval: cfg.CollectionInterval,
nextConsumer: nextConsumer,
done: make(chan struct{}),
terminated: make(chan struct{}),
obsrecv: obsreport.NewReceiver(obsreport.ReceiverSettings{
ReceiverID: cfg.ID(),
Transport: "",
ReceiverCreateSettings: set,
}),
recvSettings: set,
}
for _, op := range options {
op(sc)
}
return sc, nil
}
// Start the receiver, invoked during service start.
func (sc *controller) Start(ctx context.Context, host component.Host) error {
for _, scraper := range sc.scrapers {
if err := scraper.Start(ctx, host); err != nil {
return err
}
}
sc.initialized = true
sc.startScraping()
return nil
}
// Shutdown the receiver, invoked during service shutdown.
func (sc *controller) Shutdown(ctx context.Context) error {
sc.stopScraping()
// wait until scraping ticker has terminated
if sc.initialized {
<-sc.terminated
}
var errs error
for _, scraper := range sc.scrapers {
errs = multierr.Append(errs, scraper.Shutdown(ctx))
}
return errs
}
// startScraping initiates a ticker that calls Scrape based on the configured
// collection interval.
func (sc *controller) startScraping() {
go func() {
if sc.tickerCh == nil {
ticker := time.NewTicker(sc.collectionInterval)
defer ticker.Stop()
sc.tickerCh = ticker.C
}
for {
select {
case <-sc.tickerCh:
sc.scrapeMetricsAndReport(context.Background())
case <-sc.done:
sc.terminated <- struct{}{}
return
}
}
}()
}
// scrapeMetricsAndReport calls the Scrape function for each of the configured
// Scrapers, records observability information, and passes the scraped metrics
// to the next component.
func (sc *controller) scrapeMetricsAndReport(ctx context.Context) {
metrics := pdata.NewMetrics()
for _, scraper := range sc.scrapers {
scrp := obsreport.NewScraper(obsreport.ScraperSettings{
ReceiverID: sc.id,
Scraper: scraper.ID(),
ReceiverCreateSettings: sc.recvSettings,
})
ctx = scrp.StartMetricsOp(ctx)
md, err := scraper.Scrape(ctx)
if err != nil {
sc.logger.Error("Error scraping metrics", zap.Error(err), zap.Stringer("scraper", scraper.ID()))
if !scrapererror.IsPartialScrapeError(err) {
scrp.EndMetricsOp(ctx, 0, err)
continue
}
}
scrp.EndMetricsOp(ctx, md.MetricCount(), err)
md.ResourceMetrics().MoveAndAppendTo(metrics.ResourceMetrics())
}
dataPointCount := metrics.DataPointCount()
ctx = sc.obsrecv.StartMetricsOp(ctx)
err := sc.nextConsumer.ConsumeMetrics(ctx, metrics)
sc.obsrecv.EndMetricsOp(ctx, "", dataPointCount, err)
}
// stopScraping stops the ticker
func (sc *controller) stopScraping() {
close(sc.done)
}