 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package memcached_exporter embeds https://github.com/google/memcached_exporter
Index ¶
Constants ¶
This section is empty.
Variables ¶
      View Source
      
  var DefaultConfig = Config{ MemcachedAddress: "localhost:11211", Timeout: time.Second, }
DefaultConfig is the default config for memcached_exporter.
Functions ¶
func New ¶
func New(log log.Logger, c *Config) (integrations.Integration, error)
New creates a new memcached_exporter integration. The integration scrapes metrics from a memcached server.
Types ¶
type Config ¶
type Config struct {
	// MemcachedAddress is the address of the memcached server (host:port).
	MemcachedAddress string `yaml:"memcached_address,omitempty"`
	// Timeout is the connection timeout for memcached.
	Timeout time.Duration `yaml:"timeout,omitempty"`
	// TLSConfig is used to configure TLS for connection to memcached.
	TLSConfig *config_util.TLSConfig `yaml:"tls_config,omitempty"`
}
    Config controls the memcached_exporter integration.
func (*Config) InstanceKey ¶
InstanceKey returns the address:port of the memcached server.
func (*Config) NewIntegration ¶
func (c *Config) NewIntegration(l log.Logger) (integrations.Integration, error)
NewIntegration converts this config into an instance of an integration.
func (*Config) UnmarshalYAML ¶
UnmarshalYAML implements yaml.Unmarshaler for Config.
 Click to show internal directories. 
   Click to hide internal directories.