 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
      View Source
      
  var DefaultArguments = Arguments{ Type: filedetector.DetectorFSNotify, PollFrequency: time.Minute, }
DefaultArguments provides the default arguments for the local.file component.
Functions ¶
This section is empty.
Types ¶
type Arguments ¶
type Arguments struct {
	// Filename indicates the file to watch.
	Filename string `alloy:"filename,attr"`
	// Type indicates how to detect changes to the file.
	Type filedetector.Detector `alloy:"detector,attr,optional"`
	// PollFrequency determines the frequency to check for changes when Type is
	// Poll.
	PollFrequency time.Duration `alloy:"poll_frequency,attr,optional"`
	// IsSecret marks the file as holding a secret value which should not be
	// displayed to the user.
	IsSecret bool `alloy:"is_secret,attr,optional"`
}
    Arguments holds values which are used to configure the local.file component.
func (*Arguments) SetToDefault ¶
func (a *Arguments) SetToDefault()
SetToDefault implements syntax.Defaulter.
type Component ¶
type Component struct {
	// contains filtered or unexported fields
}
    Component implements the local.file component.
func (*Component) CurrentHealth ¶
CurrentHealth implements component.HealthComponent.
type Exports ¶
type Exports struct {
	// Content of the file.
	Content alloytypes.OptionalSecret `alloy:"content,attr"`
}
    Exports holds values which are exported by the local.file component.
 Click to show internal directories. 
   Click to hide internal directories.