Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultConfig = Arguments{ Join: nil, RefreshInterval: 60 * time.Second, DiscoverConfig: DiscoverConfig{ Cwd: true, Exe: true, Commandline: true, ContainerID: true, CgroupPath: false, }, }
Functions ¶
This section is empty.
Types ¶
type Arguments ¶
type Arguments struct {
Join []discovery.Target `alloy:"join,attr,optional"`
RefreshInterval time.Duration `alloy:"refresh_interval,attr,optional"`
DiscoverConfig DiscoverConfig `alloy:"discover_config,block,optional"`
}
func (*Arguments) SetToDefault ¶
func (args *Arguments) SetToDefault()
type Component ¶
type Component struct {
// contains filtered or unexported fields
}
func (*Component) LiveDebugging ¶ added in v1.6.0
func (c *Component) LiveDebugging()
type DiscoverConfig ¶
type DiscoverConfig struct {
Cwd bool `alloy:"cwd,attr,optional"`
Exe bool `alloy:"exe,attr,optional"`
Commandline bool `alloy:"commandline,attr,optional"`
Username bool `alloy:"username,attr,optional"`
UID bool `alloy:"uid,attr,optional"`
ContainerID bool `alloy:"container_id,attr,optional"`
CgroupPath bool `alloy:"cgroup_path,attr,optional"`
}
Click to show internal directories.
Click to hide internal directories.