Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // Whether the Integration subsystem should be enabled. Enabled bool `yaml:"-"` // When true, scrapes metrics from integrations. ScrapeIntegrations bool `yaml:"scrape_integrations"` // When true, replaces the instance label with the agent hostname. ReplaceInstanceLabel bool `yaml:"replace_instance_label"` // DEPRECATED. When true, adds an agent_hostname label to all samples from integrations. // ReplaceInstanceLabel should be used instead. UseHostnameLabel bool `yaml:"use_hostname_label"` Agent agent.Config `yaml:"agent"` NodeExporter node_exporter.Config `yaml:"node_exporter"` ProcessExporter process_exporter.Config `yaml:"process_exporter"` MysqldExporter mysqld_exporter.Config `yaml:"mysqld_exporter"` RedisExporter redis_exporter.Config `yaml:"redis_exporter"` // Extra labels to add for all integration samples Labels model.LabelSet `yaml:"labels"` // Prometheus RW configs to use for all integrations. PrometheusRemoteWrite []*config.RemoteWriteConfig `yaml:"prometheus_remote_write,omitempty"` IntegrationRestartBackoff time.Duration `yaml:"integration_restart_backoff,omitempty"` // ListenPort tells the integration Manager which port the Agent is // listening on for generating Prometheus instance configs. ListenPort *int `yaml:"-"` }
Config holds the configuration for all integrations.
func (*Config) DefaultRelabelConfigs ¶ added in v0.7.0
DefaultRelabelConfigs returns the set of relabel configs that should be prepended to all RelabelConfigs for an integration.
func (*Config) UnmarshalYAML ¶
UnmarshalYAML implements yaml.Unmarshaler for Config.
type Integration ¶
type Integration interface { // Name returns the name of the integration. Each registered integration must // have a unique name. Name() string // CommonConfig returns the set of common configuration values present across // all integrations. CommonConfig() integrationCfg.Common // RegisterRoutes should register any HTTP handlers used for the integration. // // The router provided to RegisterRoutes is a subrouter for the path // /integrations/<integration name>. All routes should register to the // relative root path and will be automatically combined to the subroute. For // example, if a metric "database" registers a /metrics endpoint, it will // be exposed as /integrations/database/metrics. RegisterRoutes(r *mux.Router) error // ScrapeConfigs should return a set of integration scrape configs that inform // the integration how samples should be collected. ScrapeConfigs() []integrationCfg.ScrapeConfig // Run should start the integration and do any required tasks. Run should *not* // exit until context is canceled. If an integration doesn't need to do anything, // it should simply wait for ctx to be canceled. Run(ctx context.Context) error }
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
Manager manages a set of integrations and runs them.
func NewManager ¶
NewManager creates a new integrations manager. NewManager must be given an InstanceManager which is responsible for accepting instance configs to scrape and send metrics from running integrations.
Directories ¶
Path | Synopsis |
---|---|
Package agent is an "example" integration that has very little functionality, but is still useful in practice.
|
Package agent is an "example" integration that has very little functionality, but is still useful in practice. |
Package config provides common configuration structs shared among implementations of integrations.Integration.
|
Package config provides common configuration structs shared among implementations of integrations.Integration. |
Package mysqld_exporter embeds https://github.com/prometheus/mysqld_exporter
|
Package mysqld_exporter embeds https://github.com/prometheus/mysqld_exporter |
Package process_exporter embeds https://github.com/ncabatoff/process-exporter Package process_exporter embeds https://github.com/ncabatoff/process-exporter
|
Package process_exporter embeds https://github.com/ncabatoff/process-exporter Package process_exporter embeds https://github.com/ncabatoff/process-exporter |
package redis_exporter embeds https://github.com/oliver006/redis_exporter
|
package redis_exporter embeds https://github.com/oliver006/redis_exporter |
Click to show internal directories.
Click to hide internal directories.