Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
      View Source
      
  
const ( // A modern Syslog RFC SyslogFormatRFC5424 = "rfc5424" // A legacy Syslog RFC also known as BSD-syslog SyslogFormatRFC3164 = "rfc3164" )
Variables ¶
      View Source
      
  var DefaultListenerConfig = ListenerConfig{ ListenProtocol: st.DefaultProtocol, IdleTimeout: st.DefaultIdleTimeout, MaxMessageLength: st.DefaultMaxMessageLength, SyslogFormat: SyslogFormatRFC5424, }
DefaultListenerConfig provides the default arguments for a syslog listener.
Functions ¶
This section is empty.
Types ¶
type Arguments ¶
type Arguments struct {
	SyslogListeners []ListenerConfig    `alloy:"listener,block"`
	ForwardTo       []loki.LogsReceiver `alloy:"forward_to,attr"`
	RelabelRules    alloy_relabel.Rules `alloy:"relabel_rules,attr,optional"`
}
    Arguments holds values which are used to configure the loki.source.syslog component.
type Component ¶
type Component struct {
	// contains filtered or unexported fields
}
    Component implements the loki.source.syslog component.
func (*Component) DebugInfo ¶
func (c *Component) DebugInfo() interface{}
DebugInfo returns information about the status of listeners.
type ListenerConfig ¶
type ListenerConfig struct {
	ListenAddress        string            `alloy:"address,attr"`
	ListenProtocol       string            `alloy:"protocol,attr,optional"`
	IdleTimeout          time.Duration     `alloy:"idle_timeout,attr,optional"`
	LabelStructuredData  bool              `alloy:"label_structured_data,attr,optional"`
	Labels               map[string]string `alloy:"labels,attr,optional"`
	UseIncomingTimestamp bool              `alloy:"use_incoming_timestamp,attr,optional"`
	UseRFC5424Message    bool              `alloy:"use_rfc5424_message,attr,optional"`
	MaxMessageLength     int               `alloy:"max_message_length,attr,optional"`
	TLSConfig            config.TLSConfig  `alloy:"tls_config,block,optional"`
	SyslogFormat         string            `alloy:"syslog_format,attr,optional"`
}
    ListenerConfig defines a syslog listener.
func (ListenerConfig) Convert ¶
func (sc ListenerConfig) Convert() (*scrapeconfig.SyslogTargetConfig, error)
Convert is used to bridge between the Alloy and Promtail types.
func (*ListenerConfig) SetToDefault ¶
func (sc *ListenerConfig) SetToDefault()
SetToDefault implements syntax.Defaulter.
func (*ListenerConfig) Validate ¶
func (sc *ListenerConfig) Validate() error
Validate implements syntax.Validator.
 Click to show internal directories. 
   Click to hide internal directories.