Documentation
¶
Index ¶
- func Check(v *Config, workers map[eosc.RequireId]eosc.IWorker) error
- func Create(id, name string, conf *Config, workers map[eosc.RequireId]eosc.IWorker) (eosc.IWorker, error)
- func NewFactory() eosc.IExtenderDriverFactory
- func Register(register eosc.IExtenderDriverRegister)
- type Config
- type ContentResize
- type Driver
- type Filter
- type Output
- type Producer
- type ProducerConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFactory ¶
func NewFactory() eosc.IExtenderDriverFactory
Types ¶
type Config ¶
type Config struct {
Scopes []string `json:"scopes" label:"作用域"`
Topic string `json:"topic" yaml:"topic" label:"Topic"`
Address string `json:"address" yaml:"address" label:"请求地址"`
Timeout int `json:"timeout" yaml:"timeout" label:"超时时间"`
Version string `` /* 468-byte string literal not displayed */
PartitionType string `json:"partition_type" yaml:"partition_type" enum:"robin,hash,manual,random"`
Partition int32 `json:"partition" yaml:"partition" switch:"partition_type==='manual'"`
PartitionKey string `json:"partition_key" yaml:"partition_key" switch:"partition_type==='hash'"`
Type string `json:"type" yaml:"type" enum:"json,line" label:"输出格式"`
ContentResize []ContentResize `json:"content_resize" yaml:"content_resize" label:"内容截断配置" switch:"type===json"`
Filters []*Filter `json:"filters" yaml:"conditions" label:"过滤条件"`
Formatter eosc.FormatterConfig `json:"formatter" yaml:"formatter" label:"格式化配置"`
}
type ContentResize ¶ added in v0.15.1
type Output ¶
type Output struct {
drivers.WorkerBase
// contains filtered or unexported fields
}
func (*Output) CheckSkill ¶
type Producer ¶ added in v0.8.0
type Producer interface {
// contains filtered or unexported methods
}
type ProducerConfig ¶
type ProducerConfig struct {
Scopes []string `json:"scopes" yaml:"scopes"`
Address []string `json:"address" yaml:"address"`
Topic string `json:"topic" yaml:"topic"`
Partition int32 `json:"partition" yaml:"partition"`
PartitionKey string `json:"partition_key" yaml:"partition_key"`
PartitionType string `json:"partition_type" yaml:"partition_type"`
Conf *sarama.Config `json:"conf" yaml:"conf"`
Type string `json:"type" yaml:"type"`
ContentResize []ContentResize `json:"content_resize" yaml:"content_resize"`
Formatter eosc.FormatterConfig `json:"formatter" yaml:"formatter"`
Filters []*Filter `json:"filters" yaml:"conditions" label:"过滤条件"`
}
Click to show internal directories.
Click to hide internal directories.