-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathscraper.go
77 lines (61 loc) · 1.83 KB
/
scraper.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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package scraperhelper // import "go.opentelemetry.io/collector/receiver/scraperhelper"
import (
"context"
"errors"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/pdata/pmetric"
)
var errNilFunc = errors.New("nil scrape func")
// ScrapeFunc scrapes metrics.
type ScrapeFunc func(context.Context) (pmetric.Metrics, error)
func (sf ScrapeFunc) Scrape(ctx context.Context) (pmetric.Metrics, error) {
return sf(ctx)
}
// Scraper is the base interface for scrapers.
type Scraper interface {
component.Component
// ID returns the scraper id.
ID() component.ID
Scrape(context.Context) (pmetric.Metrics, error)
}
// ScraperOption apply changes to internal options.
type ScraperOption func(*baseScraper)
// WithStart sets the function that will be called on startup.
func WithStart(start component.StartFunc) ScraperOption {
return func(o *baseScraper) {
o.StartFunc = start
}
}
// WithShutdown sets the function that will be called on shutdown.
func WithShutdown(shutdown component.ShutdownFunc) ScraperOption {
return func(o *baseScraper) {
o.ShutdownFunc = shutdown
}
}
var _ Scraper = (*baseScraper)(nil)
type baseScraper struct {
component.StartFunc
component.ShutdownFunc
ScrapeFunc
id component.ID
}
func (b *baseScraper) ID() component.ID {
return b.id
}
// NewScraper creates a Scraper that calls Scrape at the specified collection interval,
// reports observability information, and passes the scraped metrics to the next consumer.
func NewScraper(name string, scrape ScrapeFunc, options ...ScraperOption) (Scraper, error) {
if scrape == nil {
return nil, errNilFunc
}
bs := &baseScraper{
ScrapeFunc: scrape,
id: component.NewID(component.Type(name)),
}
for _, op := range options {
op(bs)
}
return bs, nil
}