Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Collector ¶
type Collector struct { Producer sarama.SyncProducer Config Config Samples []stats.Sample // contains filtered or unexported fields }
Collector implements the lib.Collector interface and should be used only for testing
func (*Collector) Collect ¶
func (c *Collector) Collect(scs []stats.SampleContainer)
Collect just appends all of the samples passed to it to the internal sample slice. According to the the lib.Collector interface, it should never be called concurrently, so there's no locking on purpose - that way Go's race condition detector can actually detect incorrect usage. Also, theoretically the collector doesn't have to actually Run() before samples start being collected, it only has to be initialized.
func (*Collector) GetRequiredSystemTags ¶
GetRequiredSystemTags returns which sample tags are needed by this collector
func (*Collector) Init ¶
Init does nothing, it's only included to satisfy the lib.Collector interface
func (*Collector) Link ¶
Link returns a dummy string, it's only included to satisfy the lib.Collector interface
func (*Collector) SetRunStatus ¶ added in v0.21.1
SetRunStatus does nothing in the Kafka collector
type Config ¶
type Config struct { // Connection. Brokers []string `json:"brokers" envconfig:"KAFKA_BROKERS"` // Samples. Topic null.String `json:"topic" envconfig:"KAFKA_TOPIC"` Format null.String `json:"format" envconfig:"KAFKA_FORMAT"` PushInterval types.NullDuration `json:"push_interval" envconfig:"KAFKA_PUSH_INTERVAL"` InfluxDBConfig influxdb.Config `json:"influxdb"` }
Config is the config for the kafka collector
func NewConfig ¶
func NewConfig() Config
NewConfig creates a new Config instance with default values for some fields.