Documentation ¶
Index ¶
- func AssertContainsAttribute(t *testing.T, attr pdata.AttributeMap, key string)
- func AssertDescriptorEqual(t *testing.T, expected pdata.Metric, actual pdata.Metric)
- func AssertSameTimeStampForAllMetrics(t *testing.T, metrics pdata.MetricSlice)
- func AssertSameTimeStampForMetrics(t *testing.T, metrics pdata.MetricSlice, startIdx, endIdx int)
- func AssertSumMetricHasAttribute(t *testing.T, metric pdata.Metric, index int, labelName string)
- func AssertSumMetricHasAttributeValue(t *testing.T, metric pdata.Metric, index int, labelName string, ...)
- func AssertSumMetricStartTimeEquals(t *testing.T, metric pdata.Metric, startTime pdata.Timestamp)
- type BaseFactory
- type Config
- type ConfigSettings
- type ResourceScraperFactory
- type ScraperFactory
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AssertContainsAttribute ¶
func AssertContainsAttribute(t *testing.T, attr pdata.AttributeMap, key string)
func AssertDescriptorEqual ¶
func AssertSameTimeStampForAllMetrics ¶
func AssertSameTimeStampForAllMetrics(t *testing.T, metrics pdata.MetricSlice)
func AssertSameTimeStampForMetrics ¶
func AssertSameTimeStampForMetrics(t *testing.T, metrics pdata.MetricSlice, startIdx, endIdx int)
Types ¶
type BaseFactory ¶
type BaseFactory interface { // CreateDefaultConfig creates the default configuration for the Scraper. CreateDefaultConfig() Config }
BaseFactory for creating Scrapers.
type ConfigSettings ¶
type ConfigSettings struct { }
ConfigSettings provides common settings for scraper configuration.
type ResourceScraperFactory ¶
type ResourceScraperFactory interface { BaseFactory // CreateResourceMetricsScraper creates a resource scraper based on this // config. If the config is not valid, error will be returned instead. CreateResourceMetricsScraper(ctx context.Context, logger *zap.Logger, cfg Config) (scraperhelper.Scraper, error) }
ResourceScraperFactory can create a ResourceScraper.
type ScraperFactory ¶
type ScraperFactory interface { BaseFactory // CreateMetricsScraper creates a scraper based on this config. // If the config is not valid, error will be returned instead. CreateMetricsScraper(ctx context.Context, logger *zap.Logger, cfg Config) (scraperhelper.Scraper, error) }
ScraperFactory can create a MetricScraper.
Directories ¶
Path | Synopsis |
---|---|
Package perfcounters is a thin wrapper around https://godoc.org/github.com/leoluk/perflib_exporter/perflib that provides functions to scrape raw performance counter data, without calculating rates or formatting them, from the registry.
|
Package perfcounters is a thin wrapper around https://godoc.org/github.com/leoluk/perflib_exporter/perflib that provides functions to scrape raw performance counter data, without calculating rates or formatting them, from the registry. |
scraper
|
|
Click to show internal directories.
Click to hide internal directories.