Documentation ¶
Index ¶
Constants ¶
View Source
const (
// Maximum UDP packet size
MaxUDPSize = 64 * 1024
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AsyncConfig ¶ added in v0.88.0
type BaseConfig ¶ added in v0.53.0
type BaseConfig struct { ListenAddress string `mapstructure:"listen_address,omitempty"` OneLogPerPacket bool `mapstructure:"one_log_per_packet,omitempty"` AddAttributes bool `mapstructure:"add_attributes,omitempty"` Encoding string `mapstructure:"encoding,omitempty"` SplitConfig split.Config `mapstructure:"multiline,omitempty"` TrimConfig trim.Config `mapstructure:",squash"` AsyncConfig *AsyncConfig `mapstructure:"async,omitempty"` }
BaseConfig is the details configuration of a udp input operator.
type Config ¶ added in v0.53.0
type Config struct { helper.InputConfig `mapstructure:",squash"` BaseConfig `mapstructure:",squash"` }
Config is the configuration of a udp input operator.
func NewConfig ¶ added in v0.53.0
func NewConfig() *Config
NewConfig creates a new UDP input config with default values
func NewConfigWithID ¶ added in v0.59.0
NewConfigWithID creates a new UDP input config with default values
type Input ¶ added in v0.53.0
type Input struct { helper.InputOperator OneLogPerPacket bool AsyncConfig *AsyncConfig // contains filtered or unexported fields }
Input is an operator that listens to a socket for log entries.
Click to show internal directories.
Click to hide internal directories.