influxdb

package
v1.0.0-beta1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2016 License: MIT Imports: 20 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Maximum time to try and connect to InfluxDB during startup.
	DefaultStartUpTimeout           = time.Minute * 5
	DefaultSubscriptionSyncInterval = time.Minute * 1

	DefaultSubscriptionProtocol = "http"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Enabled  bool     `toml:"enabled"`
	Name     string   `toml:"name"`
	Default  bool     `toml:"default"`
	URLs     []string `toml:"urls"`
	Username string   `toml:"username"`
	Password string   `toml:"password"`
	// Path to CA file
	SSLCA string `toml:"ssl-ca"`
	// Path to host cert file
	SSLCert string `toml:"ssl-cert"`
	// Path to cert key file
	SSLKey string `toml:"ssl-key"`
	// Use SSL but skip chain & host verification
	InsecureSkipVerify bool `toml:"insecure-skip-verify"`

	Timeout                  toml.Duration       `toml:"timeout"`
	DisableSubscriptions     bool                `toml:"disable-subscriptions"`
	SubscriptionProtocol     string              `toml:"subscription-protocol"`
	Subscriptions            map[string][]string `toml:"subscriptions"`
	ExcludedSubscriptions    map[string][]string `toml:"excluded-subscriptions"`
	UDPBind                  string              `toml:"udp-bind"`
	UDPBuffer                int                 `toml:"udp-buffer"`
	UDPReadBuffer            int                 `toml:"udp-read-buffer"`
	StartUpTimeout           toml.Duration       `toml:"startup-timeout"`
	SubscriptionSyncInterval toml.Duration       `toml:"subscriptions-sync-interval"`
}

func NewConfig

func NewConfig() Config

func (*Config) SetDefaultValues added in v1.0.0

func (c *Config) SetDefaultValues()

func (Config) Validate

func (c Config) Validate() error

type Service

type Service struct {
	PointsWriter interface {
		WritePoints(database, retentionPolicy string, consistencyLevel models.ConsistencyLevel, points []models.Point) error
	}
	LogService interface {
		NewLogger(string, int) *log.Logger
	}
	// contains filtered or unexported fields
}

Handles requests to write or read from an InfluxDB cluster

func NewService

func NewService(configs []Config, defaultInfluxDB, httpPort int, hostname string, l *log.Logger) *Service

func (*Service) Close

func (s *Service) Close() error

func (*Service) NewDefaultClient added in v0.11.0

func (s *Service) NewDefaultClient() (client.Client, error)

func (*Service) NewNamedClient added in v0.11.0

func (s *Service) NewNamedClient(name string) (client.Client, error)

func (*Service) Open

func (s *Service) Open() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL