Documentation
¶
Index ¶
- func LoadESTagIndexMap(env string, mapi interface{}) map[string]string
- func NewKafkaProducer(brokers []string) (p sarama.SyncProducer, err error)
- type BaseSender
- func (s *BaseSender) DiscardWhenBlocked() bool
- func (s *BaseSender) IsTagSupported(tag string) bool
- func (s *BaseSender) SetCommitChan(commitChan chan<- *libs.FluentMsg)
- func (s *BaseSender) SetFailedChan(failedChan chan<- *libs.FluentMsg)
- func (s *BaseSender) SetMsgPool(msgPool *sync.Pool)
- func (s *BaseSender) SetSuccessedChan(successedChan chan<- *libs.FluentMsg)
- func (s *BaseSender) SetSupportedTags(tags []string)
- type ESIndexResp
- type ESOpResp
- type ESResp
- type ElasticSearchSender
- type ElasticSearchSenderCfg
- type FluentSender
- type FluentSenderCfg
- type HTTPSender
- type HTTPSenderCfg
- type KafkaSender
- type KafkaSenderCfg
- type SenderItf
- type StdoutSender
- type StdoutSenderCfg
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LoadESTagIndexMap ¶
func NewKafkaProducer ¶
func NewKafkaProducer(brokers []string) (p sarama.SyncProducer, err error)
Types ¶
type BaseSender ¶
type BaseSender struct { IsDiscardWhenBlocked bool // contains filtered or unexported fields }
BaseSender should not put msg into msgpool in sender
func (*BaseSender) DiscardWhenBlocked ¶
func (s *BaseSender) DiscardWhenBlocked() bool
func (*BaseSender) IsTagSupported ¶
func (s *BaseSender) IsTagSupported(tag string) bool
func (*BaseSender) SetCommitChan ¶
func (s *BaseSender) SetCommitChan(commitChan chan<- *libs.FluentMsg)
func (*BaseSender) SetFailedChan ¶ added in v1.12.3
func (s *BaseSender) SetFailedChan(failedChan chan<- *libs.FluentMsg)
func (*BaseSender) SetMsgPool ¶
func (s *BaseSender) SetMsgPool(msgPool *sync.Pool)
func (*BaseSender) SetSuccessedChan ¶ added in v1.12.3
func (s *BaseSender) SetSuccessedChan(successedChan chan<- *libs.FluentMsg)
func (*BaseSender) SetSupportedTags ¶
func (s *BaseSender) SetSupportedTags(tags []string)
type ESIndexResp ¶
type ESOpResp ¶
type ESOpResp struct {
Index *ESIndexResp `json:"index"`
}
type ElasticSearchSender ¶
type ElasticSearchSender struct { *BaseSender *ElasticSearchSenderCfg // contains filtered or unexported fields }
func NewElasticSearchSender ¶
func NewElasticSearchSender(cfg *ElasticSearchSenderCfg) *ElasticSearchSender
func (*ElasticSearchSender) GetName ¶
func (s *ElasticSearchSender) GetName() string
func (*ElasticSearchSender) SendBulkMsgs ¶
func (s *ElasticSearchSender) SendBulkMsgs(bulkCtx *bulkOpCtx, msgs []*libs.FluentMsg) (err error)
type ElasticSearchSenderCfg ¶
type FluentSender ¶
type FluentSender struct { *BaseSender *FluentSenderCfg }
func NewFluentSender ¶
func NewFluentSender(cfg *FluentSenderCfg) *FluentSender
func (*FluentSender) GetName ¶
func (s *FluentSender) GetName() string
type FluentSenderCfg ¶
type HTTPSender ¶
type HTTPSender struct { *BaseSender *HTTPSenderCfg // contains filtered or unexported fields }
func NewHTTPSender ¶
func NewHTTPSender(cfg *HTTPSenderCfg) *HTTPSender
func (*HTTPSender) GetName ¶
func (s *HTTPSender) GetName() string
func (*HTTPSender) SendBulkMsgs ¶
func (s *HTTPSender) SendBulkMsgs(bulkCtx *bulkOpCtx, msgs []*libs.FluentMsg) (err error)
type HTTPSenderCfg ¶
type KafkaSender ¶
type KafkaSender struct { *BaseSender *KafkaSenderCfg }
func NewKafkaSender ¶
func NewKafkaSender(cfg *KafkaSenderCfg) *KafkaSender
func (*KafkaSender) GetName ¶
func (s *KafkaSender) GetName() string
type KafkaSenderCfg ¶
type SenderItf ¶
type SenderItf interface { Spawn(context.Context) chan<- *libs.FluentMsg // Spawn(ctx) inChan IsTagSupported(string) bool DiscardWhenBlocked() bool GetName() string SetMsgPool(*sync.Pool) SetCommitChan(chan<- *libs.FluentMsg) SetSupportedTags([]string) SetSuccessedChan(chan<- *libs.FluentMsg) SetFailedChan(chan<- *libs.FluentMsg) }
type StdoutSender ¶ added in v1.13.1
type StdoutSender struct { utils.Counter *BaseSender *StdoutSenderCfg // contains filtered or unexported fields }
StdoutSender print or discard
func NewStdoutSender ¶ added in v1.13.1
func NewStdoutSender(cfg *StdoutSenderCfg) *StdoutSender
NewStdoutSender create new null sender
func (*StdoutSender) GetName ¶ added in v1.13.1
func (s *StdoutSender) GetName() string
GetName get the name of null sender
Click to show internal directories.
Click to hide internal directories.