Documentation
¶
Overview ¶
Package batch provides an otelcol.processor.batch component.
Index ¶
- Variables
- type Arguments
- func (args Arguments) Convert() otelconfig.Processor
- func (args Arguments) Exporters() map[otelconfig.DataType]map[otelconfig.ComponentID]otelcomponent.Exporter
- func (args Arguments) Extensions() map[otelconfig.ComponentID]otelcomponent.Extension
- func (args Arguments) NextConsumers() *otelcol.ConsumerArguments
- func (args *Arguments) UnmarshalRiver(f func(interface{}) error) error
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultArguments = Arguments{ Timeout: 200 * time.Millisecond, SendBatchSize: 8192, }
DefaultArguments holds default settings for Arguments.
Functions ¶
This section is empty.
Types ¶
type Arguments ¶
type Arguments struct { Timeout time.Duration `river:"timeout,attr,optional"` SendBatchSize uint32 `river:"send_batch_size,attr,optional"` SendBatchMaxSize uint32 `river:"send_batch_max_size,attr,optional"` // Output configures where to send processed data. Required. Output *otelcol.ConsumerArguments `river:"output,block"` }
Arguments configures the otelcol.processor.batch component.
func (Arguments) Convert ¶
func (args Arguments) Convert() otelconfig.Processor
Convert implements processor.Arguments.
func (Arguments) Exporters ¶
func (args Arguments) Exporters() map[otelconfig.DataType]map[otelconfig.ComponentID]otelcomponent.Exporter
Exporters implements processor.Arguments.
func (Arguments) Extensions ¶
func (args Arguments) Extensions() map[otelconfig.ComponentID]otelcomponent.Extension
Extensions implements processor.Arguments.
func (Arguments) NextConsumers ¶
func (args Arguments) NextConsumers() *otelcol.ConsumerArguments
NextConsumers implements processor.Arguments.
func (*Arguments) UnmarshalRiver ¶
UnmarshalRiver implements river.Unmarshaler. It applies defaults to args and validates settings provided by the user.
Click to show internal directories.
Click to hide internal directories.