13 lines
237 B
Go
13 lines
237 B
Go
|
package gather
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/influxdata/platform"
|
||
|
)
|
||
|
|
||
|
// Scraper gathers metrics from a scraper target.
|
||
|
type Scraper interface {
|
||
|
Gather(ctx context.Context, target platform.ScraperTarget) (ms []Metrics, err error)
|
||
|
}
|