Documentation ¶
Index ¶
Constants ¶
View Source
const (
// TypeStr the value of "type" key in configuration.
TypeStr = "process"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Metrics allows to customize scraped metrics representation. Metrics metadata.MetricsSettings `mapstructure:"metrics"` // Include specifies a filter on the process names that should be included from the generated metrics. // Exclude specifies a filter on the process names that should be excluded from the generated metrics. // If neither `include` or `exclude` are set, process metrics will be generated for all processes. Include MatchConfig `mapstructure:"include"` Exclude MatchConfig `mapstructure:"exclude"` // MuteProcessNameError is a flag that will mute the error encountered when trying to read a process the // collector does not have permission for. // See https://github.com/open-telemetry/opentelemetry-collector/issues/3004 for more information. MuteProcessNameError bool `mapstructure:"mute_process_name_error,omitempty"` }
Config relating to Process Metric Scraper.
type Factory ¶
type Factory struct { }
Factory is the Factory for scraper.
func (*Factory) CreateDefaultConfig ¶
CreateDefaultConfig creates the default configuration for the Scraper.
func (*Factory) CreateMetricsScraper ¶ added in v0.40.0
func (f *Factory) CreateMetricsScraper( _ context.Context, settings component.ReceiverCreateSettings, cfg internal.Config, ) (scraperhelper.Scraper, error)
CreateMetricsScraper creates a resource scraper based on provided config.
type MatchConfig ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.