Documentation ¶
Overview ¶
Provides a server type for starting and configuring a Kapacitor server.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { HTTP httpd.Config `toml:"http"` Replay replay.Config `toml:"replay"` Storage storage.Config `toml:"storage"` Task task_store.Config `toml:"task"` InfluxDB []influxdb.Config `toml:"influxdb" override:"influxdb,element-key=name"` Logging logging.Config `toml:"logging"` ConfigOverride config.Config `toml:"config-override"` // Input services Graphites []graphite.Config `toml:"graphite"` Collectd collectd.Config `toml:"collectd"` OpenTSDB opentsdb.Config `toml:"opentsdb"` UDPs []udp.Config `toml:"udp"` // Alert handlers Alerta alerta.Config `toml:"alerta" override:"alerta"` HipChat hipchat.Config `toml:"hipchat" override:"hipchat"` OpsGenie opsgenie.Config `toml:"opsgenie" override:"opsgenie"` PagerDuty pagerduty.Config `toml:"pagerduty" override:"pagerduty"` SMTP smtp.Config `toml:"smtp" override:"smtp"` Sensu sensu.Config `toml:"sensu" override:"sensu"` Slack slack.Config `toml:"slack" override:"slack"` Talk talk.Config `toml:"talk" override:"talk"` Telegram telegram.Config `toml:"telegram" override:"telegram"` VictorOps victorops.Config `toml:"victorops" override:"victorops"` // Third-party integrations Kubernetes k8s.Config `toml:"kubernetes" override:"kubernetes"` Reporting reporting.Config `toml:"reporting"` Stats stats.Config `toml:"stats"` UDF udf.Config `toml:"udf"` Deadman deadman.Config `toml:"deadman"` Hostname string `toml:"hostname"` DataDir string `toml:"data_dir"` SkipConfigOverrides bool `toml:"skip-config-overrides"` DefaultRetentionPolicy string `toml:"default-retention-policy"` }
Config represents the configuration format for the kapacitord binary.
func NewConfig ¶
func NewConfig() *Config
NewConfig returns an instance of Config with reasonable defaults.
func NewDemoConfig ¶
NewDemoConfig returns the config that runs when no config is specified.
func (*Config) ApplyEnvOverrides ¶
type Queryexecutor ¶
type Queryexecutor struct{}
func (*Queryexecutor) ExecuteQuery ¶
type Server ¶
type Server struct { TaskMaster *kapacitor.TaskMaster TaskMasterLookup *kapacitor.TaskMasterLookup AuthService auth.Interface HTTPDService *httpd.Service StorageService *storage.Service TaskStore *task_store.Service ReplayService *replay.Service InfluxDBService *influxdb.Service ConfigOverrideService *config.Service TesterService *servicetest.Service MetaClient *kapacitor.NoopMetaClient QueryExecutor *Queryexecutor // List of services in startup order Services []Service // Map of service name to index in Services list ServicesByName map[string]int // Map of services capable of receiving dynamic configuration updates. DynamicServices map[string]Updater BuildInfo BuildInfo ClusterID string ServerID string // Profiling CPUProfile string MemProfile string LogService logging.Interface Logger *log.Logger // contains filtered or unexported fields }
Server represents a container for the metadata and storage data and services. It is built using a Config and it manages the startup and shutdown of all services in the proper order.
func (*Server) AppendService ¶
func (*Server) Err ¶
Err returns an error channel that multiplexes all out of band errors received from all services.
func (*Server) SetDynamicService ¶ added in v1.1.0
Click to show internal directories.
Click to hide internal directories.