Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultArguments = Arguments{ Client: commonk8s.DefaultClientArguments, }
DefaultArguments holds default settings for loki.source.kubernetes.
Functions ¶
This section is empty.
Types ¶
type Arguments ¶
type Arguments struct { ForwardTo []loki.LogsReceiver `alloy:"forward_to,attr"` // Client settings to connect to Kubernetes. Client commonk8s.ClientArguments `alloy:"client,block,optional"` Selector config.LabelSelector `alloy:"selector,block,optional"` NamespaceSelector config.LabelSelector `alloy:"namespace_selector,block,optional"` Clustering cluster.ComponentBlock `alloy:"clustering,block,optional"` }
Arguments holds values which are used to configure the loki.source.podlogs component.
func (*Arguments) SetToDefault ¶
func (args *Arguments) SetToDefault()
SetToDefault implements syntax.Defaulter.
type Component ¶
type Component struct {
// contains filtered or unexported fields
}
Component implements the loki.source.podlogs component.
func (*Component) DebugInfo ¶
func (c *Component) DebugInfo() interface{}
DebugInfo returns debug information for loki.source.podlogs.
func (*Component) NotifyClusterChange ¶
func (c *Component) NotifyClusterChange()
NotifyClusterChange implements cluster.Component.
type DebugInfo ¶
type DebugInfo struct { DiscoveredPodLogs []DiscoveredPodLogs `alloy:"pod_logs,block"` Targets []kubernetes.DebugInfoTarget `alloy:"target,block,optional"` }
DebugInfo stores debug information for loki.source.podlogs.
type DiscoveredContainer ¶
type DiscoveredPod ¶
type DiscoveredPod struct { Namespace string `alloy:"namespace,attr"` Name string `alloy:"name,attr"` ReconcileError string `alloy:"reconcile_error,attr,optional"` Containers []DiscoveredContainer `alloy:"container,block"` }
type DiscoveredPodLogs ¶
Click to show internal directories.
Click to hide internal directories.